-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.24 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.24 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
81
{
"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"
},
{
"name": "Devanox Private Limited",
"email": "[email protected]",
"homepage": "https://devanox.com",
"role": "Owner & Maintainer"
}
],
"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",
"nunomaduro/termwind": "^2.4",
"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": {
"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.3.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/revive"]
}