forked from fkobon/bow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.46 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
{
"name": "papac/bow",
"description": "The bow PHP Framework",
"keywords": ["framework", "bow", "php", "php-framework"],
"type": "project",
"require": {
"php": ">=5.6",
"mustache/mustache": "^2.12",
"nesbot/carbon": "^1.21",
"psr/log": "1.0.0",
"psy/psysh": "@stable",
"pug-php/pug": "^2.6",
"twig/twig": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"monolog/monolog": "^1.22"
},
"license": "MIT",
"authors": [
{
"name": "Franck Dakia",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Etchien Boa",
"email": "[email protected]",
"role": "Contributor"
}
],
"autoload": {
"psr-4": {
"App\\": "app/",
"Bow\\": "src/"
},
"files": [
"config/helper.php",
"src/bow/Support/helper.php"
]
},
"scripts": {
"post-create-project-cmd": [
"php bow generate:key",
"php -r 'copy(\".env-exemple.json\", \".env.json\")'"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"suggest": {
"mustache/mustache": "Pour le choix du moteur de template 'mustache'",
"pug-php/pug": "Pour le choix du moteur de template 'pug'"
}
}