-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.21 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.21 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
46
47
48
49
{
"name": "webravolab/layers",
"description": "PHP abstraction layers",
"license": "MIT",
"authors": [
{
"name": "Paolo Nardini - Webravo",
"email": "paolo.nardini@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"webravolab/cdn": "dev-master",
"webpatser/laravel-uuid": "^3.0",
"psr/log": "1.1",
"google/cloud-core": "~1.0",
"google/auth": "~1.0",
"google/common-protos": "~1.0",
"google/gax": "~1.0",
"google/apiclient": "~2.2",
"google/cloud-logging": "~1.0",
"google/cloud-datastore": "~1.0",
"php-amqplib/php-amqplib": ">=2.6.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0 || ^6.5",
"orchestra/testbench": "~3.0",
"orchestra/database": "~3.0",
"illuminate/support": "~5.2",
"illuminate/console": "~5.2",
"illuminate/filesystem": "~5.2"
},
"autoload": {
"classmap": [
"src",
"tests"
],
"psr-4": {
"Webravo\\Application\\":"src/Application/",
"Webravo\\Infrastructure\\":"src/Infrastructure/",
"Webravo\\Persistence\\":"src/Persistence/",
"Webravo\\Common\\":"src/Common/"
}
},
"config": {
"preferred-install": "dist"
}
}