forked from bowphp/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.23 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "bowphp/framework",
"description": "The bow PHP Framework",
"keywords": ["framework", "bow"],
"license": "MIT",
"support": {
"issues": "https://github.com/bowphp/framework/issues",
"source": "https://github.com/bowphp/framework"
},
"require": {
"php": ">=7",
"bowphp/tintin": "*",
"filp/whoops": "^2.1",
"nesbot/carbon": "^1.21",
"psy/psysh": "@stable"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"monolog/monolog": "^1.22",
"twig/twig": "^2.5",
"squizlabs/php_codesniffer": "3.*"
},
"authors": [
{
"name": "Franck DAKIA",
"email": "dakiafranck@gmail.com",
"role": "Lead Developer"
}
],
"autoload": {
"files": [
"src/Support/helper.php"
],
"psr-4": {
"Bow\\": "src/"
}
},
"suggest": {
"twig/twig": "For the use of template engine 'Twig'",
"papac/bow-blade": "For the use of template engine 'Blade'"
},
"scripts": {
"fix-sniffer": "phpcbf --standard=psr2 --tab-width=4 src tests",
"sniffer": "phpcs --standard=psr2 --tab-width=4 src tests"
}
}