-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.31 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.31 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
35
36
37
38
39
40
41
42
{
"name": "gnugat/micro-framework-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "Symfony Micro Framework Bundle",
"keywords": ["symfony", "micro", "framework", "bundle"],
"homepage": "https://gnugat.github.io/micro-framework-bundle",
"authors": [
{
"name": "Loïc Faugeron",
"email": "faugeron.loic@gmail.com",
"homepage": "https://gnugat.github.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Gnugat\\MicroFrameworkBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "tests\\Gnugat\\MicroFrameworkBundle\\": "tests/" }
},
"require": {
"php": "^8.2",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/error-handler": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/finder": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/routing": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^11.0",
"symfony/monolog-bridge": "^7.0",
"symfony/monolog-bundle": "^3.10",
"symfony/yaml": "^7.0"
}
}