-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
89 lines (88 loc) · 2.61 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
87
88
89
{
"name": "spatie/laravel-flare",
"description": "Send Laravel errors to Flare",
"keywords": [
"error",
"laravel",
"flare"
],
"authors": [
{
"name": "Spatie",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://flareapp.io/",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/support": "^11.0",
"spatie/flare-client-php": "^1.10",
"symfony/console": "^7.0",
"symfony/var-dumper": "^7.0",
"spatie/laravel-error-share": "^1.0",
"spatie/error-solutions": "^1.0"
},
"require-dev": {
"livewire/livewire": "^3.3.5",
"mockery/mockery": "^1.5.1",
"openai-php/client": "^0.8.1",
"orchestra/testbench": "8.22.3|^9.0",
"pestphp/pest": "^2.34",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.1",
"phpstan/phpstan-phpunit": "^1.3.16",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
"openai-php/client": "Require get solutions from OpenAI",
"psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\LaravelFlare\\FlareServiceProvider"
],
"aliases": {
"Flare": "Spatie\\LaravelFlare\\Facades\\Flare"
}
}
},
"autoload": {
"psr-4": {
"Spatie\\LaravelFlare\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\LaravelFlare\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan --generate-baseline",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"support": {
"issues": "https://github.com/spatie/laravel-flare/issues",
"forum": "https://twitter.com/flareappio",
"source": "https://github.com/spatie/laravel-flare",
"docs": "https://flareapp.io/docs/integration/laravel-customizations/introduction"
}
}