-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 1.82 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
{
"name": "area17/http-basic-auth",
"type": "library",
"description": "HttpBasicAuth service",
"keywords": [
"area17",
"laravel",
"twill",
"http-basic-auth",
"i18n",
"i10n"
],
"homepage": "https://github.com/area17/http-basic-auth",
"license": "Apache-2.0",
"authors": [
{
"name": "AREA 17",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Antonio Ribeiro",
"email": "[email protected]",
"role": "Creator"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nunomaduro/collision": "^6.2",
"nunomaduro/larastan": "^2.1",
"orchestra/testbench": "^7.6",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"A17\\HttpBasicAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"A17\\HttpBasicAuth\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"post-autoload-dump": [
"npx husky install"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"A17\\HttpBasicAuth\\ServiceProvider"
],
"aliases": {
"HttpBasicAuth": "A17\\HttpBasicAuth\\HttpBasicAuth",
"CacheControl": "A17\\HttpBasicAuth\\CacheControl"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}