generated from craftzing/php-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.97 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": "craftzing/php-testbench",
"description": "Combining all common test tools and utilities",
"keywords": ["php", "laravel", "laravel-framework", "test", "testing", "test bench", "utilities"],
"type": "library",
"homepage": "https://github.com/craftzing/php-testbench",
"support": {
"issues": "https://github.com/craftzing/php-testbench/issues",
"source": "https://github.com/craftzing/php-testbench"
},
"license": "MIT",
"authors": [
{
"name": "Rémi Pelhate",
"email": "[email protected]"
},
{
"name": "Pieter Pelgrims",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"fakerphp/faker": "^1.24",
"illuminate/console": "^10.10.0|^11.0",
"illuminate/contracts": "^10.10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"illuminate/container": "^10.10.0|^11.0",
"orchestra/testbench": "^9.9",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Craftzing\\TestBench\\": "src"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs:check": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --verbose --dry-run",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --verbose",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G --ansi",
"phpunit": "vendor/bin/phpunit --colors=always --display-phpunit-deprecations --display-deprecations",
"test": [
"@composer cs:check",
"@composer phpstan",
"@composer phpunit"
],
"test:coverage": "@composer phpunit -- --coverage-text"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}