-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.26 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
{
"name": "chiron/csrf",
"description": "Give it a nice description!",
"keywords": [],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Chiron\\Csrf\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Chiron\\Csrf\\Test\\": "tests/"
}
},
"require": {
"php": "^8.0|^8.1",
"chiron/core": "^1.0",
"chiron/http": "^1.1",
"chiron/cookies": "^1.0",
"chiron/security": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"chiron/coding-standard": "^3.0",
"nyholm/psr7": "^1.3"
},
"scripts": {
"phpunit": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml",
"phpstan": "phpstan analyse --ansi",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"chiron": {
"bootloaders": [
"Chiron\\Csrf\\Bootloader\\PublishCsrfBootloader",
"Chiron\\Csrf\\Bootloader\\CsrfTokenMiddlewareBootloader"
]
}
}
}