assets.php 948 Bytes
Newer Older
Qiang Xue committed
1 2 3
<?php

return array(
Qiang Xue committed
4 5 6 7 8 9 10 11 12 13 14 15 16
	'jquery' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'jquery.min.js',
		),
	),
	'yii' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'yii.js',
		),
		'depends' => array('jquery'),
	),
Qiang Xue committed
17 18 19
	'yii/validation' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
Qiang Xue committed
20
			'yii.validation.js',
Qiang Xue committed
21 22 23
		),
		'depends' => array('yii'),
	),
Qiang Xue committed
24 25 26
	'yii/form' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
Qiang Xue committed
27
			'yii.activeForm.js',
Qiang Xue committed
28
		),
29
		'depends' => array('yii'),
Qiang Xue committed
30
	),
31 32 33 34 35 36 37
	'yii/captcha' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'yii.captcha.js',
		),
		'depends' => array('yii'),
	),
Qiang Xue committed
38 39 40 41 42 43 44
	'yii/debug' => array(
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'yii.debug.js',
		),
		'depends' => array('yii'),
	),
45 46 47 48 49 50
	'punycode' => array(
		'sourcePath' => __DIR__ . '/vendor/bestiejs/punycode.js',
		'js' => array(
			'punycode.min.js',
		),
	),
Zander Baldwin committed
51
);