-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
executable file
·86 lines (86 loc) · 2.41 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
85
86
{
"name": "hi-folks/lara-lens",
"description": "Laravel Diagnostic command for configuration, db connection, http request",
"keywords": [
"laravel",
"diagnostic",
"cli",
"package",
"command-line",
"console",
"hi-folks",
"lara-lens"
],
"homepage": "https://github.com/hi-folks/lara-lens",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Roberto Butti",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8",
"nunomaduro/termwind": "^1.15|^2.0"
},
"require-dev": {
"doctrine/dbal": "^3.0|^4.0",
"larastan/larastan": "^1.0.0|^2.0",
"laravel/pint": "^1.4",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^1.2|^2.3",
"phpunit/phpunit": "^10.5",
"rector/rector": "^0.14|^1.0"
},
"autoload": {
"psr-4": {
"HiFolks\\LaraLens\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HiFolks\\LaraLens\\Tests\\": "tests"
}
},
"scripts": {
"all": [
"@style-fix",
"@phpstan",
"@test"
],
"style-fix": "pint",
"style-check": "pint --test",
"phpstan": "phpstan analyse -c ./phpstan.neon --no-progress",
"test": "./vendor/bin/pest --order-by random",
"rector": "rector process --dry-run"
},
"scripts-descriptions": {
"test": "Run all tests, via PespPHP",
"style-fix": "Fix the code style with PSR12",
"style-check": "Check the code style with PSR12",
"phpstan": "Run static code analysis via PHPStan",
"rector": "Suggest refactoring to be more PHP 8 compliant",
"all": "Execute tasks for fixing code style, static code analysis and tests"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": false,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"HiFolks\\LaraLens\\LaraLensServiceProvider"
],
"aliases": {
"LaraLens": "HiFolks\\LaraLens\\LaraLensFacade"
}
}
}
}