-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 934 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
{
"name": "nlisgo/abstract-babel",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"AbstractBabel\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\AbstractBabel\\": "./tests"
}
},
"require": {
"aws/aws-sdk-php": "^3.55",
"elife/api-problem": "^1.1",
"elife/ping": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"silex/silex": "^2.2",
"symfony/serializer": "^3.3",
"symfony/twig-bridge": "^3.4"
},
"require-dev": {
"csa/guzzle-cache-middleware": "^1.0",
"giorgiosironi/eris": "^0.10.0",
"phpunit/phpunit": "^5.7",
"symfony/browser-kit": "^3.4",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.7"
},
"config": {
"sort-packages": true,
"platform": {"php": "7.0.8"}
}
}