-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (54 loc) · 1.18 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "invertus/lara-core",
"authors": [
{
"name": "Invertus",
"email": "[email protected]"
}
],
"require": {
"php": "7.1.0",
"ext-json": "*",
"apimatic/jsonmapper": "^3.0",
"apimatic/unirest-php": "^3.0",
"dusank/knapsack": "^10.0",
"illuminate/config": "^5.5",
"illuminate/console": "^5.5",
"illuminate/container": "^5.5",
"illuminate/contracts": "^5.5",
"illuminate/events": "^5.5",
"illuminate/http": "^5.5",
"illuminate/support": "^5.5",
"illuminate/validation": "^5.5",
"league/container": "2.5.0",
"league/flysystem": "^1.0",
"monolog/monolog": "^1.27",
"prestashop/decimal": "^1.4",
"rakit/validation": "^1.4"
},
"autoload": {
"psr-4": {
"Invertus\\Laracore\\Vendor\\": "src/"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Invertus\\Laracore\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.1.0"
},
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}