-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·78 lines (78 loc) · 1.7 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
{
"name": "quatrohaus/seedco-server",
"type": "project",
"description": "Seedco server access",
"homepage": "https://quatrohaus.com",
"license": "MIT",
"authors": [
{
"name": "Richard Muvirimi",
"email": "[email protected]",
"homepage": "https://richard.co.zw",
"role": "Developer"
},
{
"name": "Quatrohaus",
"email": "[email protected]",
"homepage": "https://quatrohaus.com",
"role": "Company"
}
],
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"process-timeout": 0
},
"require": {
"php": ">=7.4",
"codeigniter4/framework": "^4.0",
"symfony/polyfill-php80": "^1.25",
"symfony/polyfill-php81": "^1.25",
"lodash-php/lodash-php": "^0.0.7"
},
"require-dev": {
"codeigniter4/codeigniter4-standard": "^1.1",
"phpcompatibility/php-compatibility": "^9.3",
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
},
"suggest": {
"ext-fileinfo": "Improves mime type detection for files"
},
"autoload": {
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"qc": [
"@phpcs",
"@test"
],
"php-cs-setup": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"@phpcs -i"
],
"phpcs": [
"vendor/bin/phpcs ."
],
"test": "phpunit"
},
"support": {
"forum": "http://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
}
}