Skip to content

Commit b9940bb

Browse files
authored
Merge pull request #3153 from MGatner/composer-files
Refresh Composer files
2 parents 65c9148 + 688475d commit b9940bb

4 files changed

Lines changed: 97 additions & 92 deletions

File tree

admin/framework/composer.json

Lines changed: 40 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,42 @@
11
{
2-
"name": "codeigniter4/codeigniter4",
3-
"type": "project",
4-
"description": "The CodeIgniter framework v4",
5-
"homepage": "https://codeigniter.com",
6-
"license": "MIT",
7-
"require": {
8-
"php": ">=7.2",
9-
"ext-curl": "*",
10-
"ext-intl": "*",
11-
"ext-json": "*",
12-
"ext-mbstring": "*",
13-
"kint-php/kint": "^3.3",
14-
"psr/log": "^1.1",
15-
"laminas/laminas-escaper": "^2.6"
16-
},
17-
"require-dev": {
18-
"codeigniter4/codeigniter4-standard": "^1.0",
19-
"mikey179/vfsstream": "1.6.*",
20-
"phpunit/phpunit": "^8.5",
21-
"squizlabs/php_codesniffer": "^3.3"
22-
},
23-
"autoload": {
24-
"psr-4": {
25-
"CodeIgniter\\": "system/"
26-
}
27-
},
28-
"scripts": {
29-
"post-update-cmd": [
30-
"@composer dump-autoload",
31-
"CodeIgniter\\ComposerScripts::postUpdate",
32-
"bash admin/setup.sh"
33-
]
34-
},
35-
"support": {
36-
"forum": "http://forum.codeigniter.com/",
37-
"source": "https://github.com/codeigniter4/CodeIgniter4",
38-
"slack": "https://codeigniterchat.slack.com"
39-
}
2+
"name": "codeigniter4/framework",
3+
"type": "project",
4+
"description": "The CodeIgniter framework v4",
5+
"homepage": "https://codeigniter.com",
6+
"license": "MIT",
7+
"require": {
8+
"php": ">=7.2",
9+
"ext-curl": "*",
10+
"ext-intl": "*",
11+
"ext-json": "*",
12+
"ext-mbstring": "*",
13+
"kint-php/kint": "^3.3",
14+
"laminas/laminas-escaper": "^2.6",
15+
"psr/log": "^1.1"
16+
},
17+
"require-dev": {
18+
"codeigniter4/codeigniter4-standard": "^1.0",
19+
"fzaninotto/faker": "^1.9@dev",
20+
"mikey179/vfsstream": "1.6.*",
21+
"phpunit/phpunit": "^8.5",
22+
"predis/predis": "^1.1",
23+
"squizlabs/php_codesniffer": "^3.3"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"CodeIgniter\\": "system/"
28+
}
29+
},
30+
"scripts": {
31+
"post-update-cmd": [
32+
"@composer dump-autoload",
33+
"CodeIgniter\\ComposerScripts::postUpdate"
34+
],
35+
"test": "phpunit"
36+
},
37+
"support": {
38+
"forum": "http://forum.codeigniter.com/",
39+
"source": "https://github.com/codeigniter4/CodeIgniter4",
40+
"slack": "https://codeigniterchat.slack.com"
41+
}
4042
}

admin/module/composer.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,32 @@
33
"description": "CodeIgniter4 starter module",
44
"homepage": "https://codeigniter.com",
55
"license": "MIT",
6-
"minimum-stability": "dev",
7-
"repositories": [
8-
{
9-
"type": "vcs",
10-
"url": "https://github.com/codeigniter4/codeigniter4"
11-
}
12-
],
136
"require": {
147
"php": ">=7.2"
158
},
169
"require-dev": {
10+
"codeigniter4/codeigniter4": "dev-develop",
11+
"fzaninotto/faker": "^1.9@dev",
1712
"mikey179/vfsstream": "1.6.*",
18-
"phpunit/phpunit": "8.5.*",
19-
"codeigniter4/codeigniter4": "dev-develop"
13+
"phpunit/phpunit": "^8.5"
2014
},
2115
"autoload-dev": {
2216
"psr-4": {
2317
"Tests\\Support\\": "tests/_support"
2418
}
2519
},
20+
"repositories": [
21+
{
22+
"type": "vcs",
23+
"url": "https://github.com/codeigniter4/codeigniter4"
24+
}
25+
],
26+
"minimum-stability": "dev",
2627
"scripts": {
27-
"test": "phpunit",
2828
"post-update-cmd": [
2929
"@composer dump-autoload"
30-
]
30+
],
31+
"test": "phpunit"
3132
},
3233
"support": {
3334
"forum": "http://forum.codeigniter.com/",

admin/starter/composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@
99
"codeigniter4/framework": "^4"
1010
},
1111
"require-dev": {
12+
"fzaninotto/faker": "^1.9@dev",
1213
"mikey179/vfsstream": "1.6.*",
13-
"phpunit/phpunit": "8.5.*"
14+
"phpunit/phpunit": "^8.5"
1415
},
1516
"autoload-dev": {
1617
"psr-4": {
1718
"Tests\\Support\\": "tests/_support"
1819
}
1920
},
2021
"scripts": {
21-
"test": "phpunit",
2222
"post-update-cmd": [
2323
"@composer dump-autoload"
24-
]
24+
],
25+
"test": "phpunit"
2526
},
2627
"support": {
2728
"forum": "http://forum.codeigniter.com/",

composer.json

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,43 @@
11
{
2-
"name": "codeigniter4/codeigniter4",
3-
"type": "project",
4-
"description": "The CodeIgniter framework v4",
5-
"homepage": "https://codeigniter.com",
6-
"license": "MIT",
7-
"require": {
8-
"php": ">=7.2",
9-
"ext-curl": "*",
10-
"ext-intl": "*",
11-
"ext-json": "*",
12-
"ext-mbstring": "*",
13-
"kint-php/kint": "^3.3",
14-
"psr/log": "^1.1",
15-
"laminas/laminas-escaper": "^2.6"
16-
},
17-
"require-dev": {
18-
"codeigniter4/codeigniter4-standard": "^1.0",
19-
"fzaninotto/faker": "^1.9@dev",
20-
"mikey179/vfsstream": "1.6.*",
21-
"phpunit/phpunit": "^8.5",
22-
"squizlabs/php_codesniffer": "^3.3",
23-
"predis/predis": "^1.1"
24-
},
25-
"autoload": {
26-
"psr-4": {
27-
"CodeIgniter\\": "system/"
28-
}
29-
},
30-
"scripts": {
31-
"post-update-cmd": [
32-
"@composer dump-autoload",
33-
"CodeIgniter\\ComposerScripts::postUpdate",
34-
"bash admin/setup.sh"
35-
]
36-
},
37-
"support": {
38-
"forum": "http://forum.codeigniter.com/",
39-
"source": "https://github.com/codeigniter4/CodeIgniter4",
40-
"slack": "https://codeigniterchat.slack.com"
41-
}
2+
"name": "codeigniter4/codeigniter4",
3+
"type": "project",
4+
"description": "The CodeIgniter framework v4",
5+
"homepage": "https://codeigniter.com",
6+
"license": "MIT",
7+
"require": {
8+
"php": ">=7.2",
9+
"ext-curl": "*",
10+
"ext-intl": "*",
11+
"ext-json": "*",
12+
"ext-mbstring": "*",
13+
"kint-php/kint": "^3.3",
14+
"laminas/laminas-escaper": "^2.6",
15+
"psr/log": "^1.1"
16+
},
17+
"require-dev": {
18+
"codeigniter4/codeigniter4-standard": "^1.0",
19+
"fzaninotto/faker": "^1.9@dev",
20+
"mikey179/vfsstream": "1.6.*",
21+
"phpunit/phpunit": "^8.5",
22+
"predis/predis": "^1.1",
23+
"squizlabs/php_codesniffer": "^3.3"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"CodeIgniter\\": "system/"
28+
}
29+
},
30+
"scripts": {
31+
"post-update-cmd": [
32+
"@composer dump-autoload",
33+
"CodeIgniter\\ComposerScripts::postUpdate",
34+
"bash admin/setup.sh"
35+
],
36+
"test": "phpunit"
37+
},
38+
"support": {
39+
"forum": "http://forum.codeigniter.com/",
40+
"source": "https://github.com/codeigniter4/CodeIgniter4",
41+
"slack": "https://codeigniterchat.slack.com"
42+
}
4243
}

0 commit comments

Comments
 (0)