-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 956 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
39
{
"name": "gymnasiast/rct-php",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-json": "*",
"ext-gd": "*",
"cyndaron/binary-handler": "dev-master"
},
"require-dev": {
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*"
},
"autoload": {
"psr-4": {
"RCTPHP\\": "src/"
}
},
"repositories": {
"binary-handler": {
"type": "git",
"url": "https://github.com/Cyndaron/binary-handler.git"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse src --level 9"
],
"cs-check": [
"vendor/bin/php-cs-fixer fix src/ --allow-risky=yes --dry-run --diff"
],
"cs-fix": [
"vendor/bin/php-cs-fixer fix src/ --allow-risky=yes"
]
}
}