This repository has been archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (67 loc) · 2.19 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
{
"name": "kletellier/mvc",
"description": "A small MVC framework based on Symfony component and Eloquent ORM",
"keywords": ["framework", "eloquent","symfony"],
"license": "GPL-3.0-or-later",
"type": "project",
"config": {
"vendor-dir": "plugins"
},
"require": {
"php": ">=5.4.9",
"symfony/http-foundation": "4.0.*",
"symfony/routing": "4.0.*",
"symfony/yaml": "4.0.*",
"illuminate/database": "5.3.*",
"symfony/dependency-injection": "4.0.*",
"symfony/stopwatch": "4.0.*",
"phpmailer/phpmailer": "6.0.*",
"symfony/class-loader": "3.4.*",
"symfony/finder": "4.0.*",
"symfony/filesystem": "4.0.*",
"symfony/config": "4.0.*",
"symfony/console": "4.0.*",
"symfony/event-dispatcher": "4.0.*",
"psr/log": "1.0.*",
"maximebf/debugbar": "1.*",
"mobiledetect/mobiledetectlib": "2.8.*",
"symfony/var-dumper": "4.0.*",
"beberlei/assert": "2.8.*",
"danielstjules/stringy": "3.1.*",
"nesbot/carbon": "1.22.*",
"predis/predis": "1.1.*",
"hoa/mime": "~3.0",
"filp/whoops": "2.1.*",
"philo/laravel-blade": "3.*",
"nikic/php-parser": "3.1.*"
},
"autoload": {
"psr-4": {
"Application\\" : "app/Application",
"Migrations\\" : "app/Migrations",
"Facades\\": "app/Facades",
"GL\\" : "vendor/GL",
"DI\\" : "cache/DI",
"Parameters\\": "cache/parameters",
"Route\\": "cache/route",
"Events\\": "cache/events"
},
"files": ["library/functions.php"]
},
"suggest": {
"kletellier/assets": "Add mainstream assets integration easiest.",
"tecnickcom/tcpdf": "For PDF handling",
"phpoffice/phpexcel": "For Excel file handling"
},
"scripts": {
"post-install-cmd": [
"php console cache:clear",
"php console debugbar:install"
],
"post-update-cmd": [
"php console cache:clear",
"php console debugbar:install"
]
},
"minimum-stability": "dev"
}