generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
66 lines (66 loc) · 1.88 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
{
"name": "ahmadwaleed/laravel-blanket",
"description": "A blanket which wraps your laravel http client, and provides dashboard to access logs, retry and debug your http requests.",
"keywords": [
"ahmadwaleed",
"laravel",
"blanket"
],
"homepage": "https://github.com/ahmadwaleed/blanket",
"license": "MIT",
"authors": [
{
"name": "AhmedWaleed",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"laravel/framework": "^8.50|^9.0"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^4.4",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Ahmadwaleed\\Blanket\\": "src",
"Ahmadwaleed\\Blanket\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Ahmadwaleed\\Blanket\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"cs-fix": [
"./vendor/bin/php-cs-fixer fix --config .php_cs.dist.php --diff"
],
"cs-test": [
"./vendor/bin/php-cs-fixer fix --dry-run --config .php_cs.dist.php --diff"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Ahmadwaleed\\Blanket\\BlanketServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}