forked from epam-php-solutions/EpamCiBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.77 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
43
44
45
46
47
48
49
50
{
"name": "epam/ci-bundle",
"description": "This bundle provides functionality for Continuous Integration & Automated Deployments for Symfony-based projects",
"keywords": ["ci", "deployment", "continuous integration", "phing", "jenkins", "hudson", "capistrano", "capifony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "EPAM Systems",
"homepage": "http://www.epam.com"
},
{
"name": "Max Romanovsky",
"email": "max.romanovsky@gmail.com",
"homepage": "http://maxromanovsky.com",
"role": "Developer"
},
{
"name": "Capifony Community",
"homepage": "https://github.com/everzet/capifony/graphs/contributors"
},
{
"name": "Php-jenkins-template Community",
"homepage": "https://github.com/sebastianbergmann/php-jenkins-template/graphs/contributors"
}
],
"require": {
"symfony/symfony": "~2.3",
"sensiolabs/security-checker": "1.*"
},
"suggest": {
"doctrine/doctrine-migrations-bundle": "Required for Doctrine Migrations during build & deployment",
"doctrine/migrations": "Required for Doctrine Migrations during build & deployment",
"doctrine/doctrine-fixtures-bundle": "Required for Doctrine Fixtures during build",
"doctrine/data-fixtures": "Required for Doctrine Fixtures during build",
"ext-xsl": "Required by apidoc phing target (backed by phpDocumentor 2)"
},
"autoload": {
"psr-0": {
"Epam\\CiBundle": ""
}
},
"target-dir": "Epam/CiBundle",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}