-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.03 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nova-framework/mini-nova",
"type": "project",
"description": "Mini MVC Framework for PHP 5.6+",
"homepage": "https://github.com/nova-framework/mini-nova",
"license": "MIT",
"authors": [
{
"name": "Virgil-Adrian Teaca",
"email": "virgil@giulianaeassociati.com",
"homepage": "http://giulianaeassociati.com",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/nova-framework/plugin-installer"
},
{
"type": "git",
"url": "https://github.com/nova-framework/mini-system"
}
],
"require": {
"php": ">=5.6.0",
"nova-framework/plugin-installer": "dev-mini",
"nova-framework/mini-system": "dev-master",
"ramsey/uuid": "~3.0"
},
"require-dev": {
"fzaninotto/faker": "^1.6"
},
"autoload": {
"classmap": [
"app/Database/Migrations",
"app/Database/Seeds"
],
"psr-4": {
"App\\": "app/",
"Bootstrap\\": "plugins/Bootstrap/src/",
"Backend\\": "plugins/Backend/src/",
"Content\\": "plugins/Content/src/",
"FileField\\": "plugins/FileField/src/",
"Widgets\\": "plugins/Widgets/src/",
"Taxonomy\\": "plugins/Taxonomy/src/",
"Backup\\": "plugins/Backup/src/",
"FileManager\\": "plugins/FileManager/src/",
"Blocks\\": "plugins/Blocks/src/",
"Notifications\\": "plugins/Notifications/src/"
}
},
"scripts": {
"post-install-cmd": [
"php forge optimize"
],
"post-update-cmd": [
"php forge optimize"
],
"post-create-project-cmd": [
"php forge key:generate"
],
"post-autoload-dump": [
"Mini\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
]
}
}