-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.09 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
{
"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": ">=8.2",
"symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0 || ^12.0",
"matthiasnoback/symfony-dependency-injection-test": "^6.2",
"phpspec/prophecy": "^1.14",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\": "."},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\Tests\\": "Tests/"}
}
}