-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.55 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
{
"type": "project",
"description": "Online Games Store by CodeIgniter4",
"license": "MIT",
"require": {
"php": ">=7.3",
"codeigniter4/translations": "dev-develop",
"codeigniter4/codeigniter4": "dev-develop",
"kenjis/ci3-to-4-upgrade-helper": "1.x-dev",
"liaison/revision": "1.x-dev"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "1.6.*",
"phpunit/phpunit": "^9.0",
"bear/qatools": "^1.9"
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"post-update-cmd": [
"@composer dump-autoload",
"php spark revision:update"
],
"test": "phpunit",
"tests": [
"@cs",
"@sa",
"@test"
],
"cs-fix": "phpcbf",
"cs": "phpcs",
"sa": [
"phpstan analyse --no-progress -c phpstan.neon",
"psalm --show-info=true",
"@md"
],
"md": "phpmd app text ./phpmd.xml --exclude */app/Config,*/app/Views"
},
"scripts-descriptions": {
"test": "Run PHPUnit",
"tests": "Run tests and quality checks",
"cs": "Check the coding style",
"cs-fix": "Fix the coding style",
"sa": "Run static analysis"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/codeigniter4"
}
]
}