forked from franzliedke/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1000 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
33
34
35
36
{
"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": {
"php": ">=7.0",
"composer-plugin-api": "^1.0 || ^2.0",
"symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/filesystem": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"composer/composer": "1.10.x-dev",
"phpspec/phpspec": "^6.3 || ^7.0"
},
"replace": {
"franzliedke/studio": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "0.11.x-dev"
},
"class": "Studio\\Composer\\StudioPlugin"
},
"bin": ["bin/studio"],
"scripts": {
"test": "phpspec run"
}
}