forked from area17/twill-http-basic-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 962 Bytes
/
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
{
"name": "area17/twill-http-basic-auth",
"description": "A Twill Capsule to add and handle HTTP Basic Auth",
"homepage": "https://github.com/area17/twill-http-basic-auths",
"license": "MIT",
"require": {
"php": ">=8.0",
"area17/twill": "^2.7|^3.0",
"area17/http-basic-auth": "1.x-dev"
},
"require-dev": {
"nunomaduro/larastan": "^2.0",
"phpstan/phpstan": "^1.8",
"orchestra/testbench": "^7.11",
"friendsofphp/php-cs-fixer": "^3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/area17/http-basic-auth"
}
],
"autoload": {
"psr-4": {
"A17\\TwillHttpBasicAuth\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"A17\\TwillHttpBasicAuth\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"npx husky install"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}