Skip to content

Commit 2207ced

Browse files
committed
chore: Update to work on latest CI 4.3
1 parent afae669 commit 2207ced

File tree

5 files changed

+977
-934
lines changed

5 files changed

+977
-934
lines changed

app/Config/Kint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Config;
44

55
use CodeIgniter\Config\BaseConfig;
6-
use Kint\Renderer\Renderer;
6+
use Kint\Renderer\AbstractRenderer as Renderer;
77

88
/**
99
* --------------------------------------------------------------------------

composer.json

Lines changed: 70 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
{
2-
"name": "codeigniter4projects/playground",
3-
"description": "A space to learn and experience CodeIgniter 4",
4-
"license": "MIT",
5-
"type": "project",
6-
"keywords": [
7-
"codeigniter",
8-
"codeigniter4"
9-
],
10-
"authors": [
11-
{
12-
"name": "Matthew Gatner",
13-
"email": "mgatner@tattersoftware.com",
14-
"homepage": "https://tattersoftware.com",
15-
"role": "Developer"
16-
}
17-
],
18-
"homepage": "https://codeigniter.com",
19-
"support": {
20-
"forum": "http://forum.codeigniter.com/",
21-
"source": "https://github.com/codeigniter4projects/playground",
22-
"slack": "https://codeigniterchat.slack.com"
23-
},
24-
"require": {
25-
"php": "^7.4 || ^8.0",
26-
"codeigniter4/framework": "^4.1"
27-
},
28-
"require-dev": {
29-
"psr/container": "1.1.2",
30-
"codeigniter4/devkit": "^1.0"
31-
},
32-
"config": {
33-
"allow-plugins": {
34-
"phpstan/extension-installer": true
35-
}
36-
},
37-
"minimum-stability": "dev",
38-
"prefer-stable": true,
39-
"autoload": {
40-
"exclude-from-classmap": [
41-
"**/Database/Migrations/**"
42-
]
43-
},
44-
"autoload-dev": {
45-
"psr-4": {
46-
"Tests\\Support\\": "tests/_support"
47-
}
48-
},
49-
"config": {
50-
"allow-plugins": {
51-
"phpstan/extension-installer": true
52-
}
53-
},
54-
"scripts": {
55-
"analyze": "phpstan analyze",
56-
"ci": [
57-
"Composer\\Config::disableProcessTimeout",
58-
"@deduplicate",
59-
"@analyze",
60-
"@test",
61-
"@inspect",
62-
"rector process",
63-
"@style"
64-
],
65-
"deduplicate": "phpcpd app/ src/",
66-
"inspect": "deptrac analyze --cache-file=build/deptrac.cache",
67-
"mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit",
68-
"patch": "patch",
69-
"retool": "retool",
70-
"style": "php-cs-fixer fix --verbose --ansi --using-cache=no",
71-
"test": "phpunit"
2+
"name": "codeigniter4projects/playground",
3+
"description": "A space to learn and experience CodeIgniter 4",
4+
"license": "MIT",
5+
"type": "project",
6+
"keywords": [
7+
"codeigniter",
8+
"codeigniter4"
9+
],
10+
"authors": [
11+
{
12+
"name": "Matthew Gatner",
13+
"email": "mgatner@tattersoftware.com",
14+
"homepage": "https://tattersoftware.com",
15+
"role": "Developer"
16+
}
17+
],
18+
"homepage": "https://codeigniter.com",
19+
"support": {
20+
"forum": "http://forum.codeigniter.com/",
21+
"source": "https://github.com/codeigniter4projects/playground",
22+
"slack": "https://codeigniterchat.slack.com"
23+
},
24+
"require": {
25+
"php": "^7.4 || ^8.0",
26+
"codeigniter4/framework": "^4.3"
27+
},
28+
"require-dev": {
29+
"psr/container": "1.1.2",
30+
"codeigniter4/devkit": "^1.0"
31+
},
32+
"config": {
33+
"allow-plugins": {
34+
"phpstan/extension-installer": true
7235
}
36+
},
37+
"minimum-stability": "dev",
38+
"prefer-stable": true,
39+
"autoload": {
40+
"exclude-from-classmap": [
41+
"**/Database/Migrations/**"
42+
]
43+
},
44+
"autoload-dev": {
45+
"psr-4": {
46+
"Tests\\Support\\": "tests/_support"
47+
}
48+
},
49+
"config": {
50+
"allow-plugins": {
51+
"phpstan/extension-installer": true
52+
}
53+
},
54+
"scripts": {
55+
"analyze": "phpstan analyze",
56+
"ci": [
57+
"Composer\\Config::disableProcessTimeout",
58+
"@deduplicate",
59+
"@analyze",
60+
"@test",
61+
"@inspect",
62+
"rector process",
63+
"@style"
64+
],
65+
"deduplicate": "phpcpd app/ src/",
66+
"inspect": "deptrac analyze --cache-file=build/deptrac.cache",
67+
"mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit",
68+
"patch": "patch",
69+
"retool": "retool",
70+
"style": "php-cs-fixer fix --verbose --ansi --using-cache=no",
71+
"test": "phpunit"
72+
}
7373
}

0 commit comments

Comments
 (0)