-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
59 lines (59 loc) · 1.56 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
{
"name": "samsonasik/ci4-album",
"type": "library",
"description": "An Example of CodeIgniter 4 Album module",
"keywords": [
"ci4",
"codeigniter4",
"codeigniter"
],
"homepage": "https://github.com/samsonasik/ci4-album",
"license": "MIT",
"authors": [
{
"name": "Abdul Malik Ikhsan",
"email": "[email protected]",
"homepage": "http://samsonasik.wordpress.com",
"role": "Developer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"conflict": {
"codeigniter4/framework": "<4.5.1"
},
"require-dev": {
"codeigniter/coding-standard": "^1.7.15",
"codeigniter4/framework": "^4.5.1",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5.20",
"rector/rector": "dev-main"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Album\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlbumTest\\": "test/",
"CodeIgniter4\\": "vendor/codeigniter4/codeigniter4-standard/CodeIgniter4/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyze": "phpstan analyze src --level=max",
"rectify": "rector --dry-run",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"test": "phpunit --colors=always"
}
}