-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
62 lines (62 loc) · 1.75 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
58
59
60
61
62
{
"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": "^8.1",
"bowphp/tintin": "^3.0",
"filp/whoops": "^2.1",
"nesbot/carbon": "^2.16",
"psy/psysh": "v0.10.*",
"fakerphp/faker": "^1.20",
"neitanod/forceutf8": "^2.0"
},
"require-dev": {
"pda/pheanstalk": "^4.0",
"phpunit/phpunit": "^8",
"monolog/monolog": "^1.22",
"twig/twig": "^2.5",
"squizlabs/php_codesniffer": "3.*",
"aws/aws-sdk-php": "^3.87",
"phpstan/phpstan": "^0.12.87",
"php-amqplib/php-amqplib": "^3.0",
"bowphp/policier": "^3.0",
"mockery/mockery": "^1.5",
"spatie/phpunit-snapshot-assertions": "^4.2",
"predis/predis": "^2.1"
},
"authors": [
{
"name": "Franck DAKIA",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Bow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bow\\Tests\\": "tests/"
}
},
"suggest": {
"twig/twig": "For using Twig template engine",
"papac/bow-blade": "For using Blade template engine"
},
"scripts": {
"phpcbf": "phpcbf --standard=psr12 --severity=4 --tab-width=4 src tests",
"phpcs": "phpcs --standard=psr12 --severity=4 --tab-width=4 src",
"test": "phpunit --configuration phpunit.dist.xml"
}
}