-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.37 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "berlioz/http-core",
"type": "berlioz-package",
"description": "Berlioz Framework HTTP Core",
"license": "MIT",
"homepage": "https://getberlioz.com",
"authors": [
{
"name": "Ronan Giron",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Berlioz\\Http\\Core\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Berlioz\\Http\\Core\\Tests\\": "tests/",
"Berlioz\\Http\\Core\\TestProject\\": "tests_env/src/"
},
"exclude-from-classmap": [
"/tests/_envTest/"
]
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-intl": "*",
"ext-zlib": "*",
"berlioz/core": "^2.2",
"berlioz/flash-bag": "^1.0",
"berlioz/http-message": "^2.0",
"berlioz/router": "^2.5",
"berlioz/twig-package": "^2.4",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"provide": {
"psr/container-implementation": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/http-server-handler-implementation": "^1.0",
"psr/http-server-middleware-implementation": "^1.0",
"psr/simple-cache-implementation": "^1.0"
},
"config": {
"berlioz": {
"package": "Berlioz\\Http\\Core\\BerliozPackage"
}
}
}