generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.66 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "lemaur/toolbox",
"description": "Toolbox full of useful packages to keep your Laravel project compliant with your coding standards.",
"keywords": [
"lemaur",
"laravel",
"toolbox",
"rector",
"pest",
"dusk",
"phpstan",
"php-cs-fixer",
"code style",
"refactor",
"testing",
"tests",
"static analysis"
],
"homepage": "https://github.com/lemaur/toolbox",
"license": "MIT",
"authors": [
{
"name": "Maurizio",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.12",
"brianium/paratest": "^6.6",
"driftingly/rector-laravel": "^0.14.1",
"ergebnis/phpstan-rules": "^1.0",
"graham-campbell/analyzer": "^3.1",
"illuminate/contracts": "^8.0|^9.0",
"infection/infection": "dev-master",
"johnkary/phpunit-speedtrap": "^v4.0",
"laravel/dusk": "^7.0",
"nunomaduro/larastan": "^2.2",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.3",
"pestphp/pest-plugin-mock": "^1.0",
"pestphp/pest-plugin-parallel": "^v1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"rector/rector": "^0.14.7",
"roave/security-advisories": "dev-latest",
"spatie/laravel-package-tools": "^1.4.3",
"spatie/laravel-ray": "^1.0",
"spatie/pest-plugin-snapshots": "^1.1",
"spatie/pest-plugin-test-time": "^1.1",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"Lemaur\\Toolbox\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Lemaur\\Toolbox\\ToolboxServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/leMaur/toolbox/issues"
},
"suggest": {
"thecodingmachine/safe": "A set of core PHP functions rewritten to throw exceptions instead of returning false when an error is encountered.",
"thecodingmachine/phpstan-safe-rule": "PHPStan rule to help you detect unsafe function call and will propose you to use the thecodingmachine/safe variant instead."
}
}