-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 967 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
{
"name": "makinacorpus/static-passthrough-bundle",
"description": "Easily serve a tree of statics files through Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Simon Mellerin",
"email": "[email protected]"
},
{
"name": "Makina Corpus",
"homepage": "http://makina-corpus.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/mime": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^2.2",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"MakinaCorpus\\StaticPassthroughBundle\\" : "src/"
}
}
}