-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 1.02 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
{
"name": "matthiasnoback/symfony-bundle-plugins",
"type": "library",
"description": "Allow Symfony bundles to have plugins",
"keywords": ["Symfony", "bundle", "plugin"],
"homepage": "http://github.com/matthiasnoback/symfony-bundle-plugins",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "matthiasnoback@gmail.com",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"autoload": {
"psr-4": {
"Matthias\\BundlePlugins\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Matthias\\BundlePlugins\\Tests\\": "test/"
}
},
"require": {
"php": ">=5.3",
"symfony/http-kernel": "^2.3|^3.0",
"symfony/dependency-injection": "^2.3|^3.0",
"symfony/config": "^2.3|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0",
"symfony/framework-bundle": "^2.3|^3.0",
"satooshi/php-coveralls": "^1.0.0"
}
}