-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.26 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "boldbrush/bread",
"description": "Bread - A BREAD (browse, read, edit, add, delete) generator for Laravel",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"laravel",
"bread",
"boldbrush"
],
"authors": [
{
"name": "Adro Rocker",
"email": "me@adro.rocks"
}
],
"config": {
"sort-packages": true,
"process-timeout": 0
},
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.4"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"laravel/laravel": "^9.0",
"mockery/mockery": "^1.5",
"orchestra/canvas": "^7.3",
"orchestra/testbench": "^7.11",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"BoldBrush\\Bread\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BoldBrush\\Bread\\Test\\": "tests/"
},
"files": [
"./tests/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"BoldBrush\\Bread\\Provider\\BreadServiceProvider"
],
"aliases": {
"Bread": "BoldBrush\\Bread\\Bread"
}
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"action": [
"@cs-check",
"@test-coverage"
],
"githooks": [
"@pre-commit",
"@pre-push"
],
"docs": "node_modules/docsify-cli/bin/docsify serve ./docs",
"pre-commit": "cp ./.githooks/pre-commit ./.git/hooks/pre-commit && chmod +x ./.git/hooks/pre-commit",
"pre-push": "cp ./.githooks/pre-push ./.git/hooks/pre-push && chmod +x ./.git/hooks/pre-push",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"test-html": "vendor/bin/phpunit --coverage-html ./build/logs/html",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --coverage-clover ./build/logs/clover.xml",
"test-txt": "vendor/bin/phpunit --colors=always --coverage-text ./tests"
}
}