-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 1.95 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
68
69
70
71
72
73
{
"name": "devanoxltd/laravel-revive",
"description": "Automatic configuration for Laravel apps to apply Devanox's standard linting & code standards.",
"keywords": [
"devanox",
"revive",
"php",
"code style",
"laravel"
],
"homepage": "https://github.com/devanoxltd/laravel-revive",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/devanoxltd/laravel-revive/issues",
"source": "https://github.com/devanoxltd/laravel-revive"
},
"authors": [
{
"name": "Chetan",
"email": "[email protected]",
"homepage": "https://mrchetan.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"larastan/larastan": "^v3.0",
"mrchetan/php_standard": "^4.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"laravel-zero/framework": "^11.0",
"laravel/pint": "^1.18",
"nunomaduro/termwind": "^2.3",
"spatie/invade": "^1.1",
"tightenco/tlint": "^9.4"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"files": [
"./vendor/squizlabs/php_codesniffer/autoload.php"
]
},
"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.2.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/revive"]
}