-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 913 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
{
"name": "dogado/laravel-cookie-manager",
"description": "cookie manager library with different capabilities to modify cookies",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dogado-group/laravel-cookie-manager",
"require": {
"php": "^7.3|^8.0",
"cbschuld/browser.php": "^1.9",
"symfony/http-foundation": "^5.3.7|^6.0"
},
"require-dev": {
"fakerphp/faker": "^1.14",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.89",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Dogado\\Laravel\\CookieManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit",
"phpstan analyse",
"phpcs --standard=phpcs.xml"
],
"unit": "phpunit",
"stan": "phpstan analyse",
"cs": "phpcs --standard=phpcs.xml"
}
}