composer.json 2.62 KB
Newer Older
1 2
{
	"name": "yiisoft/yii2-dev",
Qiang Xue committed
3
	"description": "Yii PHP Framework Version 2 - Development Package",
4 5
	"keywords": ["yii", "framework"],
	"homepage": "http://www.yiiframework.com/",
6
	"type": "yii2-extension",
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
	"license": "BSD-3-Clause",
	"authors": [
		{
			"name": "Qiang Xue",
			"email": "qiang.xue@gmail.com",
			"homepage": "http://www.yiiframework.com/",
			"role": "Founder and project lead"
		},
		{
			"name": "Alexander Makarov",
			"email": "sam@rmcreative.ru",
			"homepage": "http://rmcreative.ru/",
			"role": "Core framework development"
		},
		{
			"name": "Maurizio Domba",
			"homepage": "http://mdomba.info/",
			"role": "Core framework development"
		},
		{
			"name": "Carsten Brandt",
			"email": "mail@cebe.cc",
			"homepage": "http://cebe.cc/",
			"role": "Core framework development"
		},
		{
			"name": "Timur Ruziev",
			"email": "resurtm@gmail.com",
			"homepage": "http://resurtm.com/",
			"role": "Core framework development"
		},
		{
			"name": "Paul Klimov",
			"email": "klimov.paul@gmail.com",
			"role": "Core framework development"
		}
	],
	"support": {
		"issues": "https://github.com/yiisoft/yii2/issues?state=open",
		"forum": "http://www.yiiframework.com/forum/",
		"wiki": "http://www.yiiframework.com/wiki/",
		"irc": "irc://irc.freenode.net/yii",
		"source": "https://github.com/yiisoft/yii2"
	},
Qiang Xue committed
51 52 53 54
	"minimum-stability": "dev",
	"replace": {
		"yiisoft/yii2-bootstrap": "self.version",
		"yiisoft/yii2-debug": "self.version",
55
		"yiisoft/yii2-elasticsearch": "self.version",
Qiang Xue committed
56 57
		"yiisoft/yii2-gii": "self.version",
		"yiisoft/yii2-jui": "self.version",
58
		"yiisoft/yii2-mongodb": "self.version",
59
		"yiisoft/yii2-redis": "self.version",
Qiang Xue committed
60 61
		"yiisoft/yii2-smarty": "self.version",
		"yiisoft/yii2-swiftmailer": "self.version",
62
		"yiisoft/yii2-sphinx": "self.version",
Qiang Xue committed
63 64 65
		"yiisoft/yii2-twig": "self.version",
		"yiisoft/yii2": "self.version"
	},
66 67 68 69 70
	"require": {
		"php": ">=5.4.0",
		"ext-mbstring": "*",
		"lib-pcre": "*",
		"yiisoft/jquery": "1.10.*",
71
		"yiisoft/yii2-composer": "*",
72 73
		"phpspec/php-diff": ">=1.0.2",
		"ezyang/htmlpurifier": "4.5.*",
74 75 76 77 78
		"michelf/php-markdown": "1.3.*",
		"twbs/bootstrap": "3.0.*",
		"smarty/smarty": "*",
		"swiftmailer/swiftmailer": "*",
		"twig/twig": "*"
79 80 81
	},
	"autoload": {
		"psr-0": {
82 83 84 85 86 87 88 89 90 91 92 93
			"yii\\bootstrap\\": "extensions/",
			"yii\\debug\\": "extensions/",
			"yii\\elasticsearch\\": "extensions/",
			"yii\\gii\\": "extensions/",
			"yii\\jui\\": "extensions/",
			"yii\\mongodb\\": "extensions/",
			"yii\\redis\\": "extensions/",
			"yii\\smarty\\": "extensions/",
			"yii\\swiftmailer\\": "extensions/",
			"yii\\sphinx\\": "extensions/",
			"yii\\twig\\": "extensions/",
			"yii\\": "framework/"
Qiang Xue committed
94 95
		}
	}
96
}