-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.38 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": "bowphp/app",
"description": "The bow PHP Framework",
"keywords": ["framework", "bow", "php", "php-framework"],
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/bowphp/app/issues",
"source": "https://github.com/bowphp/app"
},
"require": {
"php": ">=7.1",
"bowphp/framework": "4.2.*",
"bowphp/policier": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"monolog/monolog": "^1.22",
"squizlabs/php_codesniffer": "3.*"
},
"authors": [
{
"name": "Franck DAKIA",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"config/helper.php"
]
},
"scripts": {
"post-root-package-install":[
"@php -r \"file_exists('.env.json') || copy('.env.example.json', '.env.json');\""
],
"post-create-project-cmd": [
"@php bow generate:key"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"suggest": {
"twig/twig": "For the use of template engine 'Twig'",
"papac/bow-blade": "For the use of template engine 'Blade'"
}
}