-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.3 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.3 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
50
{
"name": "luckycyborg/miniframework",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Virgil-Adrian Teaca",
"email": "darkstarlinux@gmail.com"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"danielstjules/stringy": "~1.8",
"doctrine/inflector": "^1.3",
"dragonmantank/cron-expression": "~1.0",
"symfony/console": "4.2.*",
"symfony/finder": "4.2.*",
"symfony/debug": "4.2.*",
"symfony/http-foundation": "4.2.*",
"symfony/http-kernel": "4.2.*",
"symfony/process": "4.2.*",
"symfony/translation": "4.2.*",
"symfony/var-dumper": "4.2.*",
"symfony/event-dispatcher": "4.2.*",
"nesbot/carbon": "^2.0.0",
"swiftmailer/swiftmailer": "^5.4"
},
"autoload": {
"psr-4": {
"App\\" : "app/",
"Mini\\" : "system/"
},
"files": [
"system/Support/helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"php forge optimize"
],
"post-update-cmd": [
"php forge optimize"
],
"post-create-project-cmd": [
"php forge key:generate"
]
}
}