-
Notifications
You must be signed in to change notification settings - Fork 210
/
composer.json
81 lines (81 loc) · 2.23 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
{
"name": "nova-framework/framework",
"type": "project",
"description": "Framework for PHP 7.1+",
"homepage": "https://github.com/nova-framework/framework",
"license": "MIT",
"authors": [
{
"name": "David Carr",
"email": "[email protected]",
"homepage": "http://daveismyname.blog",
"role": "Co-author"
},
{
"name": "Virgil-Adrian Teaca",
"email": "[email protected]",
"homepage": "http://giulianaeassociati.com",
"role": "Co-author"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/nova-framework/package-installer"
},
{
"type": "git",
"url": "https://github.com/nova-framework/system"
}
],
"require": {
"php": "^7.1.8",
"nova-framework/package-installer": "*",
"nova-framework/system": "4.2.*",
"almasaeed2010/adminlte": "^2.4",
"twbs/bootstrap": "^3.3",
"ramsey/uuid": "~3.0",
"guzzlehttp/guzzle": "^5.0",
"filp/whoops": "^2.1",
"google/recaptcha": "~1.1",
"dompdf/dompdf": "^0.8",
"thunderer/shortcode": "^0.6",
"intervention/image": "^2.4"
},
"require-dev": {
"fzaninotto/faker": "^1.6"
},
"autoload": {
"classmap": [
"app/Database/Migrations"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "modules/",
"Themes\\": "themes/",
"Shared\\": "shared/"
},
"files": [
"shared/Support/helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"php forge optimize",
"php forge package:optimize"
],
"post-update-cmd": [
"php forge clear-compiled",
"php forge optimize",
"php forge package:optimize"
],
"post-create-project-cmd": [
"php forge key:generate"
],
"post-autoload-dump": [
"Nova\\Composer\\Installer\\PackageInstaller::postAutoloadDump"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}