-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 923 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
37
38
39
{
"name": "berlioz/berlioz",
"description": "Berlioz Framework",
"minimum-stability": "stable",
"license": "MIT",
"homepage": "http://www.berlioz-framework.com",
"authors": [
{
"name": "Ronan Giron",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Berlioz\\Core\\": "src/",
"Psr\\EventManager\\": "lib/Psr/EventManager"
}
},
"require": {
"php": ">=7.1",
"ext-intl": "*",
"berlioz/utils": "@dev",
"berlioz/http-message": "@dev",
"berlioz/service-container": "@dev",
"phpdocumentor/reflection-docblock": "~3.2",
"twig/twig": "~2.4",
"psr/container": "~1.0",
"psr/http-message": "~1.0",
"psr/log": "~1.0",
"psr/simple-cache": "~1.0"
},
"require-dev": {
"phpfastcache/phpfastcache": "~6.1",
"phpunit/phpunit": "~6.5"
},
"suggest": {
"phpfastcache/phpfastcache": "~6.1"
}
}