-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.3 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.3 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": "surgiie/illuminate-cli",
"description": "A command-line for various laravel illuminate or framework components.",
"keywords": [
"framework",
"laravel",
"console",
"cli",
"illuminate",
"support"
],
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/surgiie/illuminate-cli/issues",
"source": "https://github.com/surgiie/illuminate-cli"
},
"authors": [
{
"name": "Sergio Compean",
"email": "scompean24@gmail.com"
}
],
"scripts": {
"test": "vendor/bin/pest tests -c phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"phpstan:baseline": "vendor/bin/phpstan analyse --memory-limit=2G --generate-baseline",
"format": "vendor/bin/pint",
"format:test": "vendor/bin/pint --test"
},
"require": {
"php": "^8.2.0",
"illuminate/cache": "^11.44",
"illuminate/encryption": "^11.44",
"illuminate/support": "^11.44",
"illuminate/validation": "^11.44",
"illuminate/view": "^11.44",
"laravel-zero/framework": "^11.36.1",
"laravel/tinker": "^2.10",
"nunomaduro/laravel-console-dusk": "^1.14",
"psy/psysh": "^0.12.8",
"spatie/laravel-directory-cleanup": "^1.10",
"surgiie/artisan-arbitrary-options": "^0.3.0",
"symfony/yaml": "^7.2"
},
"require-dev": {
"larastan/larastan": "^3.8",
"laravel/pint": "^1.18.3",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.7.1",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"./app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": [
"./builds/illuminate"
]
}