-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "glowieframework/glowie",
"description": "Powerful and lightweight PHP framework",
"type": "project",
"license": "MIT",
"keywords": [
"framework",
"glowie",
"mvc"
],
"homepage": "https://gabrielsilva.dev.br/glowie",
"support": {
"issues": "https://github.com/glowieframework/glowie/issues",
"source": "https://github.com/glowieframework/glowie"
},
"authors": [
{
"name": "Gabriel Silva",
"email": "glowie@gabrielsilva.dev.br",
"homepage": "https://gabrielsilva.dev.br/glowie"
}
],
"require": {
"php": "^7.4|^8.0",
"glowieframework/glowie-core": "^1.7"
},
"autoload": {
"psr-4": {
"Glowie\\Commands\\": "app/commands/",
"Glowie\\Controllers\\": "app/controllers/",
"Glowie\\Jobs\\": "app/jobs/",
"Glowie\\Middlewares\\": "app/middlewares/",
"Glowie\\Migrations\\": "app/migrations/",
"Glowie\\Models\\": "app/models/",
"Glowie\\Helpers\\": "app/views/helpers/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php firefly init"
],
"post-autoload-dump": [
"@php firefly publish"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}