-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.14 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
{
"name": "berlioz/core",
"type": "library",
"description": "Berlioz Framework Core",
"minimum-stability": "stable",
"license": "MIT",
"homepage": "https://getberlioz.com",
"authors": [
{
"name": "Ronan Giron",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Berlioz\\Core\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Berlioz\\Core\\Tests\\": "tests/",
"Berlioz\\Core\\TestProject\\": "tests_env/src/"
},
"exclude-from-classmap": [
"/tests_env/src/"
]
},
"require": {
"php": "^8.0",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"berlioz/config": "^2.0",
"berlioz/event-manager": "^1.0",
"berlioz/helpers": "^1.2",
"berlioz/service-container": "^2.1",
"league/flysystem": "^2.1 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"provide": {
"psr/container-implementation": "^1.0",
"psr/event-dispatcher-implementation": "^1.0",
"psr/simple-cache-implementation": "^1.0"
}
}