-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 907 Bytes
/
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": "indragunawan/facade-bundle",
"description": "Support Facades for Symfony services.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Indra Gunawan",
"email": "[email protected]",
"homepage": "https://github.com/IndraGunawan"
}
],
"autoload": {
"psr-4": {
"Indragunawan\\FacadeBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"require": {
"php": "^7.1.3|^8.0",
"psr/container": "^1.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.2 || ^8.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}