-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.16 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "gmo/common",
"license": "MIT",
"description": "A library for common code",
"require": {
"bolt/common": "^1.0",
"bolt/collection": "^1.1",
"nesbot/carbon": "^1.20",
"php": "^7.1",
"symfony/yaml": "^2.5 || ^3.0 || ^4.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"mikey179/vfsStream": "^1.6",
"monolog/monolog": "^1.18",
"php-http/client-common": "^1.5",
"php-http/discovery": "^1.2",
"php-http/message": "^1.5",
"php-http/message-factory": "^1.0",
"phpunit/phpunit": "^6.2",
"predis/predis": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"symfony/cache": "^4.0",
"symfony/console": "^4.0",
"symfony/phpunit-bridge": "^4.0"
},
"autoload": {
"psr-4": {
"Gmo\\Common\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gmo\\Common\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}