Created
July 11, 2013 21:20
-
-
Save rinatio/5979353 to your computer and use it in GitHub Desktop.
Yii2 composer.json example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories" : [ | |
{ | |
"type": "package", | |
"package": { | |
"name": "yiisoft/yii2", | |
"version": "master", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/yiisoft/yii2.git", | |
"reference" : "master" | |
} | |
} | |
} | |
], | |
"require": { | |
"yiisoft/yii2": "dev-master" | |
}, | |
"autoload": { | |
// This way all you need is require composer autoloader | |
"files": ["vendor/yiisoft/yii2/framework/yii.php"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment