-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.62 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
{
"name": "bowphp/app",
"description": "The bow PHP Framework",
"keywords": [
"framework",
"bow",
"bowphp",
"php",
"php-framework"
],
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/bowphp/app/issues",
"source": "https://github.com/bowphp/app"
},
"require": {
"php": "^8.1",
"bowphp/cqrs": "^1.0",
"bowphp/framework": "^5.0",
"bowphp/meta-manager": "^1.0",
"bowphp/policier": "^2.1",
"php-fp/php-fp-either": "^1.0",
"prewk/result": "^3.1",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^8",
"monolog/monolog": "^1.22",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"config/helpers.php"
]
},
"scripts": {
"lint": "phpcbf --standard=psr12 --tab-width=4 app tests config routes",
"test": "phpunit --configuration phpunit.xml",
"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 using Twig template engine",
"papac/bow-blade": "For using Blade template engine"
},
"minimum-stability": "stable",
"prefer-stable": true
}