-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "sukarix/statera",
"description": "Statera - Statera is a unit testing kit designed specifically for the Sukarix Framework.",
"type": "library",
"keywords": [
"framework",
"sukarix",
"php",
"fat-free",
"testing-tools"
],
"license": "MIT",
"homepage": "https://sukarix.com",
"support": {
"issues": "https://github.com/suakrix/statera/issues",
"source": "https://github.com/suakrix/statera"
},
"authors": [
{
"name": "RIADVICE",
"email": "[email protected]"
},
{
"name": "Ghazi Triki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sukarix\\": "src/Sukarix/"
}
},
"autoload-dev": {
"psr-4": {
"": [
"src/",
"tests/"
]
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"ext-xdebug": "*",
"friendsofphp/php-cs-fixer": "^v3.54.0",
"phpunit/php-code-coverage": "^10.1.14",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": false,
"process-timeout": 600,
"preferred-install": "dist",
"github-protocols": [
"https"
],
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"code-check": "./vendor/bin/phpstan analyse",
"csfix": [
"sudo phpdismod -s cli xdebug",
"./vendor/bin/php-cs-fixer fix --allow-risky yes",
"sudo phpenmod -s cli xdebug\n\n"
],
"sniffer": "./vendor/bin/phpcs app/src/",
"phpcbf": "vendor/bin/phpcbf app/src/",
"phpdd": "./vendor/bin/phpdd --target 8.1 app/src/",
"phploc": "./vendor/bin/phploc app/src/",
"phpinsights": "./vendor/bin/phpinsights",
"phpmetrics": "./vendor/bin/phpmetrics --report-html=metrics app/src/",
"churn": "./vendor/bin/churn run app/src/",
"psalm": "./vendor/bin/psalm --threads=8 --diff"
},
"suggest": {
"ikkez/f3-middleware": "A middleware router plugin for PHP Fat-Free Framework"
}
}