-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) 路 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) 路 1.79 KB
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
{
"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": "samsonasik@gmail.com",
"homepage": "http://samsonasik.wordpress.com",
"role": "Developer"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
},
"conflict": {
"codeigniter4/framework": "<4.7.4"
},
"require-dev": {
"boundwize/pyrameter": "^0.5",
"boundwize/structarmed": "^0.17",
"codeigniter/coding-standard": "^1.8.2",
"codeigniter4/framework": "4.7.4",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11.5",
"rector/rector": "dev-main"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
},
"audit": {
"ignore": ["PKSA-z3gr-8qht-p93v"]
}
},
"autoload": {
"psr-4": {
"Album\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlbumTest\\": "test/"
},
"classmap": [
"vendor/codeigniter4/framework/app/Controllers/BaseController.php"
]
},
"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",
"structarmed": "structarmed analyze"
}
}