-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.14 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
{
"name": "daycry/restserver",
"description": "Rest Server for Codeigniter 4",
"homepage": "https://github.com/daycry/restserver",
"authors":
[
{
"name": "daycry",
"homepage": "https://github.com/daycry",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=7.4 || ^8.0",
"daycry/encryption": "^2.0",
"daycry/settings": "^1.0",
"daycry/relations": "^2.0",
"daycry/jwt": "^1.0",
"daycry/class-finder": "^2.2",
"daycry/cronjob": "^2.0"
},
"require-dev":
{
"codeigniter4/framework": "^4",
"kint-php/kint": "^5.0.3",
"codeigniter/coding-standard": "^1.5",
"fakerphp/faker": "^1.9",
"friendsofphp/php-cs-fixer": "3.13.0",
"mikey179/vfsstream": "^1.6",
"nexusphp/cs-config": "^3.6",
"nexusphp/tachycardia": "^1.0",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.7.1",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.1",
"predis/predis": "^1.1 || ^2.0",
"rector/rector": "0.15.12",
"vimeo/psalm": "^5.0"
},
"autoload":
{
"psr-4": {
"Daycry\\RestServer\\": "src/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev":
{
"psr-4":
{
"Tests\\": "tests/",
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix --ansi --verbose src",
"php-cs-fixer fix --ansi --verbose tests"
],
"cs": [
"vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff src",
"vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff tests"
],
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpcpd": [
"php phpcpd.phar src/"
]
}
}