generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
69 lines (69 loc) · 2.1 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
{
"name" : "spatie/error-solutions",
"description" : "This is my package error-solutions",
"keywords" : [
"Spatie",
"error-solutions"
],
"homepage" : "https://github.com/spatie/error-solutions",
"license" : "MIT",
"authors" : [
{
"name" : "Ruben Van Assche",
"email" : "[email protected]",
"role" : "Developer"
}
],
"require" : {
"php": "^8.0"
},
"require-dev" : {
"livewire/livewire": "^2.11|^3.3.5",
"illuminate/support": "^10.0|^11.0",
"illuminate/broadcasting" : "^10.0|^11.0",
"openai-php/client": "^0.10.1",
"illuminate/cache" : "^10.0|^11.0",
"pestphp/pest" : "^2.20",
"phpstan/phpstan" : "^1.11",
"psr/simple-cache-implementation" : "^3.0",
"psr/simple-cache" : "^3.0",
"spatie/ray" : "^1.28",
"symfony/cache" : "^5.4|^6.0|^7.0",
"symfony/process" : "^5.4|^6.0|^7.0",
"vlucas/phpdotenv" : "^5.5",
"orchestra/testbench": "^7.0|8.22.3|^9.0"
},
"autoload" : {
"psr-4" : {
"Spatie\\ErrorSolutions\\" : "src",
"Spatie\\Ignition\\" : "legacy/ignition",
"Spatie\\LaravelIgnition\\" : "legacy/laravel-ignition"
}
},
"autoload-dev" : {
"psr-4" : {
"Spatie\\ErrorSolutions\\Tests\\" : "tests"
}
},
"suggest" : {
"openai-php/client" : "Require get solutions from OpenAI",
"simple-cache-implementation" : "To cache solutions from OpenAI"
},
"scripts" : {
"analyse" : "vendor/bin/phpstan analyse",
"baseline" : "vendor/bin/phpstan analyse --generate-baseline",
"test" : "vendor/bin/pest",
"test-coverage" : "vendor/bin/pest --coverage",
"format" : "vendor/bin/pint"
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": false
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}