forked from franzliedke/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 858 Bytes
/
composer.json
1
2
3
4
5
6
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
{
"name": "franzl/studio",
"description": "Develop your Composer libraries with style",
"keywords": ["composer", "development", "workflow"],
"type": "composer-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Studio\\": "src"
}
},
"require": {
"composer-plugin-api": "^1.0",
"symfony/console": "^2.7 || ^3.0 || ^4.0",
"symfony/filesystem": "^2.5 || ^3.0 || ^4.0",
"symfony/process": "^2.5 || ^3.0 || ^4.0"
},
"require-dev": {
"composer/composer": "dev-master",
"phpspec/phpspec": "~2.3"
},
"replace": {
"franzliedke/studio": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "0.11.x-dev"
},
"class": "Studio\\Composer\\StudioPlugin"
},
"bin": ["bin/studio"]
}