-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer-dev.json
More file actions
59 lines (59 loc) · 1.57 KB
/
composer-dev.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"require": {
"php": "^8.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95.1",
"larastan/larastan": "^3.9.6",
"laravel-zero/framework": "^12.1",
"laravel/pint": "^1.29.1",
"mrchetan/php_standard": "^5.3",
"mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.4",
"pestphp/pest": "^4.6.3",
"phpstan/phpstan": "^2.1.51",
"rector/rector": "^2.4.2",
"shipfastlabs/agent-detector": "^1.1.3",
"spatie/invade": "^2.1",
"squizlabs/php_codesniffer": "^4.0.1",
"tightenco/tlint": "^9.6"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"./vendor/squizlabs/php_codesniffer/autoload.php"
],
"exclude-from-classmap": ["/tests/Fixtures/"]
},
"scripts": {
"app": "./revive",
"lint": "./revive lint",
"fix": "./revive fix",
"rector-dry-run": "vendor/bin/rector process --dry-run --ansi",
"rector": "vendor/bin/rector process --ansi"
},
"config": {
"preferred-install": {
"laravel/pint": "source",
"*": "dist"
},
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.3.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/revive"]
}