-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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": "maymeow/cryptography",
"license": "MIT",
"autoload": {
"psr-4": {
"MayMeow\\Cryptography\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MayMeow\\Cryptography\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "May Meow",
"email": "php-cryptography.b933@maymeow.mozmail.com"
}
],
"require": {
"php": "~8.0",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^2.1.17",
"pheromone/phpcs-security-audit": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"scripts": {
"test": "phpunit tests",
"test-failing": "phpunit tests --group failing",
"cs-check": "phpcs --standard=PSR12 src",
"cs-fix": "phpcbf --standard=PSR12 src",
"stan": "phpstan analyse"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}