forked from spiral-modules/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 798 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
{
"name": "spiral/components",
"type": "framework",
"description": "Spiral PHP Framework Core Components",
"license": "MIT",
"authors": [
{
"name": "Anton Titov / Wolfy-J",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"psr/log": "*",
"psr/http-message": "^1.0",
"container-interop/container-interop": "^1.1",
"doctrine/inflector": "*",
"guzzlehttp/guzzle": "~6.0",
"monolog/monolog": "^1.11",
"symfony/finder": "^2.7",
"symfony/event-dispatcher": "^2.7",
"symfony/translation": "^2.7"
},
"autoload": {
"files": [
"source/functions.php"
],
"psr-4": {
"Spiral\\": "source/Spiral/",
"Spiral\\Tests\\": "tests/"
}
}
}