-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "glowy/csrf",
"description": "Cross Site Request Forgery security component.",
"license": "MIT",
"keywords": [
"security", "csrf", "php", "glowyphp", "glowy"
],
"support": {
"source": "https://github.com/glowyphp/csrf",
"issues": "https://github.com/glowyphp/csrf/issues"
},
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io"
}
],
"require": {
"php": "^8.1"
},
"autoload":{
"psr-4": {
"Glowy\\Csrf\\": "src/"
}
},
"require-dev": {
"doctrine/coding-standard": "9.0.0",
"pestphp/pest": "^1.21.3",
"phpstan/phpstan": "^1.8.0",
"victorjonsson/markdowndocs": "dev-master"
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}