-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.28 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
{
"name": "sukarix/application",
"type": "project",
"description": "The skeleton application for the Sukarix PHP framework.",
"keywords": ["sukarix", "framework", "fat-free"],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-redis": "*",
"sukarix/sukarix": "^v0.2.0",
"robmorgan/phinx": "^0.16.0"
},
"autoload": {
"psr-4": {
"": "app/src"
}
},
"require-dev": {
"ext-xdebug": "*",
"sukarix/statera": "dev-main",
"fakerphp/faker": "^v1.23.1",
"friendsofphp/php-cs-fixer": "^v3.54.0",
"roave/security-advisories": "dev-latest"
},
"autoload-dev": {
"psr-4": {
"": [
"app/src",
"tests/src/"
]
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 600,
"preferred-install": "dist",
"minimum-stability": "dev",
"prefer-stable": true,
"github-protocols": [
"https"
],
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"csfix": [
"sudo phpdismod -s cli xdebug",
"./vendor/bin/php-cs-fixer fix --allow-risky yes",
"sudo phpenmod -s cli xdebug\n\n"
]
}
}