-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.89 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
63
64
65
66
67
{
"name": "gammamatrix/playground-test",
"description": "Playground: A test helper for Playground Laravel packages.",
"keywords": [
"gammamatrix",
"laravel",
"playground",
"test"
],
"homepage": "https://github.com/gammamatrix/playground-test",
"license": "MIT",
"authors": [
{
"name": "Jeremy Postlethwaite",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"brianium/paratest": "^7.4",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.41",
"larastan/larastan": "^2.0",
"laravel/sanctum": "^4.0",
"gammamatrix/playground": "*",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "9.*",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^11.0",
"timacdonald/log-fake": "^2.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Database\\Factories\\Playground\\Test\\Models\\": "database/factories/",
"Playground\\Test\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\Playground\\Test\\": "tests/Unit/",
"Tests\\Feature\\Playground\\Test\\": "tests/Feature/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"gammamatrix/*": "source",
"*": "dist"
}
},
"extra": {
"laravel": {
"providers": [
"Playground\\Test\\ServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --verbose --debug --level max",
"cloc": "cloc --exclude-dir=output,vendor .",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit"
}
}