-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
64 lines (64 loc) · 1.41 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
{
"name": "samsonasik/ci4-vue",
"description": "CodeIgniter4 starter app with Vue.js Integration",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Abdul Malik Ikhsan",
"email": "samsonasik@gmail.com",
"homepage": "http://samsonasik.wordpress.com",
"role": "Developer"
}
],
"homepage": "https://codeigniter.com",
"support": {
"forum": "http://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"codeigniter4/framework": "^4.6"
},
"require-dev": {
"codeigniter/coding-standard": "^1.0",
"infection/infection": "^0.29.10",
"mikey179/vfsstream": "1.6.*",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"CodeIgniter4\\": "vendor/codeigniter4/codeigniter4-standard/CodeIgniter4/",
"Tests\\": "tests",
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"platform": {
"php": "8.2.99"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"@composer dump-autoload"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"test": "phpunit"
}
}