generated from tighten/php-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
71 lines (71 loc) · 1.82 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
{
"name": "tightenco/duster",
"description": "Automatic configuration for Laravel apps to apply Tighten's standard linting & code standards.",
"keywords": [
"tightenco",
"duster",
"php",
"code style",
"laravel"
],
"homepage": "https://github.com/tighten/duster",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/tighten/duster/issues",
"source": "https://github.com/tighten/duster"
},
"authors": [
{
"name": "Matt Stauffer",
"email": "[email protected]",
"homepage": "https://tighten.com",
"role": "Developer"
},
{
"name": "Anthony Clark",
"email": "[email protected]",
"homepage": "https://tighten.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"laravel-zero/framework": "^11.0",
"laravel/pint": "^1.18",
"nunomaduro/termwind": "^2.0",
"spatie/invade": "^1.1",
"squizlabs/php_codesniffer": "^3.10",
"tightenco/tlint": "^9.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"files": [
"./vendor/squizlabs/php_codesniffer/autoload.php"
]
},
"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/duster"]
}