-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
33 lines (33 loc) · 1.05 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
{
"name": "massive/build-bundle",
"description": "Massive Art Build Bundle",
"homepage": "https://github.com/massiveart/MassiveBuildBundle",
"authors": [
{
"name": "Sulu Community",
"homepage": "https://github.com/massiveart/MassiveBuildBundle/contributors"
}
],
"license": "MIT",
"require": {
"php": ">=7.2.0",
"symfony/console": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
"phpspec/prophecy": "^1.14"
},
"autoload": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\": "."},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\Tests\\": "Tests/"}
}
}