-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.13 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "blitz-php/app-skeleton",
"description": "Skeleton App for Blitz framework",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Dimitri Sitchet Tomkeu",
"email": "dimitrisitchet@gmail.com"
}
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require": {
"blitz-php/framework": "^0.12"
},
"require-dev": {
"filp/whoops": "^2.15"
},
"scripts": {
"post-update-cmd": [
"BlitzPHP\\Initializer\\ComposerScripts::postUpdate",
"@php klinge publish"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php klinge key:generate"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"suggest": {
"paragonie/csp-builder": "Constructeur CSP, pour utiliser le middleware CSP"
},
"minimum-stability": "stable",
"prefer-stable": true
}