-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.09 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
{
"name": "kevinsmith/laravel-samesite-none-compat",
"description": "Provides support for legacy clients when using SameSite=None cookies in Laravel 5.8+",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Kevin Smith",
"email": "kevin@kevinsmith.io"
}
],
"keywords": [
"laravel",
"laravel-package",
"samesite",
"samesite-cookies",
"cookies",
"compatibility-layer",
"middleware"
],
"autoload": {
"psr-4": {
"KevinSmith\\SameSiteNoneCompat\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KevinSmith\\SameSiteNoneCompat\\Laravel\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2",
"illuminate/http": "^5.8|^6"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master"
}
}