-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
98 lines (98 loc) · 4.43 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "antaresproject/core",
"description": "Antares Core",
"authors": [
{
"name": "Antares Team",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.0.1",
"laravel/framework": "5.5.*",
"yajra/laravel-datatables-oracle": "6.15.2",
"aarondfrancis/urlcrypt": "0.2.*",
"torann/geoip": "0.2.*@dev",
"tijsverkoyen/css-to-inline-styles": "~2.2",
"laravolt/avatar": "^1.0@dev",
"thomaswelton/laravel-gravatar": "~1.0",
"sensiolabs/ansi-to-html": "^1.1",
"symfony/filesystem": ">=2.4",
"php-coveralls/php-coveralls": "^2.0",
"baum/baum": "~1.1",
"franzose/closure-table": "4.*",
"tymon/jwt-auth": "1.0.*",
"doctrine/dbal": "^2.5@dev",
"predis/predis": "v1.1.*",
"twig/twig": "v1.30.*",
"rcrowe/twigbridge": "^0.9.0",
"davejamesmiller/laravel-breadcrumbs": "3.0.3",
"linfo/linfo": "dev-master",
"phpunit/phpunit": "~5.7",
"laravel/browser-kit-testing": "^1.0",
"fzaninotto/faker": "master",
"mockery/mockery": "0.9.*",
"symfony/security-core": "master",
"antaresproject/component-installer-plugin": "0.9.2.x-dev",
"antaresproject/component-logger": "*",
"antaresproject/component-brands": "*",
"antaresproject/component-users": "*",
"antaresproject/component-tester": "*",
"antaresproject/component-installer": "*",
"antaresproject/component-translations": "*",
"knplabs/knp-menu": "^2.1"
},
"autoload": {
"classmap": [
"src",
"tests"
],
"files": [
"src/components/html/src/Support/helpers.php",
"src/foundation/src/helpers.php",
"src/components/kernel/src/Routing/helpers.php",
"src/components/messages/src/helpers.php"
],
"psr-4": {
"Antares\\Foundation\\": "src/foundation/src",
"Antares\\View\\": "src/components/view/src",
"Antares\\Testing\\": "src/utils/testing/src",
"Antares\\Testbench\\": "src/utils/testbench/src",
"Antares\\Support\\Providers\\": "src/components/support/src/Providers",
"Antares\\Support\\Facades\\": "src/components/support/src/Facades",
"Antares\\Support\\": "src/components/support/src/Support",
"Antares\\Publisher\\": "src/components/publisher/src",
"Antares\\Notifier\\": "src/components/notifier/src",
"Antares\\Model\\": "src/components/model/src",
"Antares\\Messages\\": "src/components/messages/src",
"Antares\\Memory\\": "src/components/memory/src",
"Antares\\Installation\\": "src/components/installer/src",
"Antares\\Html\\": "src/components/html/src",
"Antares\\Extension\\": "src/components/extension/src",
"Antares\\Contracts\\": "src/components/contracts",
"Antares\\Authorization\\": "src/components/auth/src/Authorization",
"Antares\\Security\\": "src/utils/security/src",
"Antares\\Auth\\": "src/components/auth/src/Auth",
"Antares\\Asset\\": "src/utils/asset/src",
"Antares\\Console\\": "src/components/console/src",
"Antares\\Exception\\": "src/components/exception",
"Antares\\Area\\": "src/components/area/src",
"Antares\\GeoIP\\": "src/utils/geoip/src",
"Antares\\Users\\": "src/components/users/src",
"Antares\\Brands\\": "src/components/brands/src",
"Antares\\UI\\UIComponents\\": "src/ui/components/templates/src",
"Antares\\Datatables\\": "src/components/datatables/src",
"Antares\\Breadcrumb\\": "src/ui/base/src/Breadcrumb",
"Antares\\Customfield\\": "src/utils/customfield/src",
"Antares\\Date\\": "src/utils/date/src",
"Antares\\Translation\\": "src/utils/translation/src",
"Antares\\Acl\\": "src/components/acl/src",
"Antares\\Registry\\": "src/utils/registry/src",
"Antares\\Twig\\": "src/utils/twig",
"Antares\\Url\\": "src/utils/url/src",
"Antares\\": "src/components/kernel/src"
}
}
}