forked from EasyCorp/easy-deploy-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.28 KB
/
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
37
38
39
40
41
42
{
"name": "easycorp/easy-deploy-bundle",
"type": "symfony-bundle",
"description": "The easiest way to deploy Symfony applications",
"keywords": ["deploy", "deployment", "deployer"],
"homepage": "https://github.com/EasyCorp/easy-deploy-bundle",
"license": "MIT",
"authors": [
{
"name": "Javier Eguiluz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"symfony/console": "~2.3|~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0|~5.0",
"symfony/expression-language": "~2.4|~3.0|~4.0|~5.0",
"symfony/filesystem": "~2.3|~3.0|~4.0|~5.0",
"symfony/http-foundation": "~2.3|~3.0|~4.0|~5.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0|~5.0",
"symfony/polyfill-mbstring": "^1.3",
"symfony/process": "~2.3|~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "EasyCorp\\Bundle\\EasyDeployBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "EasyCorp\\Bundle\\EasyDeployBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}