-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "daynnnnn/statamic-forward-auth",
"description": "Allows you to use login using forward authentication.",
"autoload": {
"psr-4": {
"Daynnnnn\\Statamic\\Auth\\ForwardAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Daynnnnn\\Statamic\\Auth\\ForwardAuth\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Statamic Forward Auth",
"description": "Allows you to use login using forward authentication."
},
"laravel": {
"providers": [
"Daynnnnn\\Statamic\\Auth\\ForwardAuth\\ForwardAuthServiceProvider"
]
}
},
"require": {
"statamic/cms": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"pestphp/pest": "^2.6",
"orchestra/testbench": "^8.5",
"directorytree/ldaprecord": "^3.7"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
}
}