forked from antaresproject/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 2.36 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
55
56
57
58
{
"name": "antaresproject/core",
"description": "Antares Core",
"authors": [
{
"name": "Antares Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"yajra/laravel-datatables-oracle": "6.15.2",
"aarondfrancis/urlcrypt": "0.2.*",
"torann/geoip": "0.2.*@dev",
"tijsverkoyen/css-to-inline-styles": "~1.2",
"twig/twig": "~1.15|~2.0",
"laravolt/avatar": "^1.0@dev",
"thomaswelton/laravel-gravatar": "~1.0",
"symfony/filesystem": ">=2.4"
},
"require-dev": {
"davejamesmiller/laravel-breadcrumbs": "dev-master",
"linfo/linfo": "dev-master"
},
"autoload": {
"files": [
"html/src/Support/helpers.php",
"foundation/src/helpers.php",
"kernel/src/Routing/helpers.php",
"messages/src/helpers.php"
],
"psr-4": {
"Antares\\Foundation\\": "src/core/foundation/src",
"Antares\\Widget\\": "src/core/widget/src",
"Antares\\View\\": "src/core/view/src",
"Antares\\Translation\\": "src/components/translation/src",
"Antares\\Testing\\": "src/core/testing/src",
"Antares\\Testbench\\": "src/core/testbench/src",
"Antares\\Support\\Providers\\": "src/core/support/src/Providers",
"Antares\\Support\\Facades\\": "src/core/support/src/Facades",
"Antares\\Support\\": "src/core/support/src/Support",
"Antares\\Publisher\\": "src/core/publisher/src",
"Antares\\Notifier\\": "src/core/notifier/src",
"Antares\\Model\\": "src/core/model/src",
"Antares\\Messages\\": "src/core/messages/src",
"Antares\\Memory\\": "src/core/memory/src",
"Antares\\Installation\\": "src/core/installer/src",
"Antares\\Html\\": "src/core/html/src",
"Antares\\Extension\\": "src/core/extension/src",
"Antares\\Contracts\\": "src/core/contracts",
"Antares\\Authorization\\": "src/core/auth/src/Authorization",
"Antares\\Security\\": "src/core/security/src",
"Antares\\Auth\\": "src/core/auth/src/Auth",
"Antares\\Asset\\": "src/core/asset/src",
"Antares\\": "src/core/kernel/src"
}
}
}