Skip to content

Commit bd6a8e3

Browse files
committed
Run composer normalize
1 parent b08c28a commit bd6a8e3

3 files changed

Lines changed: 72 additions & 72 deletions

File tree

admin/framework/composer.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "codeigniter4/framework",
3-
"type": "project",
43
"description": "The CodeIgniter framework v4",
5-
"homepage": "https://codeigniter.com",
64
"license": "MIT",
5+
"type": "project",
6+
"homepage": "https://codeigniter.com",
7+
"support": {
8+
"forum": "https://forum.codeigniter.com/",
9+
"source": "https://github.com/codeigniter4/CodeIgniter4",
10+
"slack": "https://codeigniterchat.slack.com"
11+
},
712
"require": {
813
"php": "^7.4 || ^8.0",
914
"ext-intl": "*",
@@ -13,39 +18,34 @@
1318
"psr/log": "^1.1"
1419
},
1520
"require-dev": {
16-
"kint-php/kint": "^5.0.4",
1721
"codeigniter/coding-standard": "^1.5",
1822
"fakerphp/faker": "^1.9",
1923
"friendsofphp/php-cs-fixer": "3.13.0",
24+
"kint-php/kint": "^5.0.4",
2025
"mikey179/vfsstream": "^1.6",
2126
"nexusphp/cs-config": "^3.6",
2227
"phpunit/phpunit": "^9.1",
2328
"predis/predis": "^1.1 || ^2.0"
2429
},
2530
"suggest": {
2631
"ext-curl": "If you use CURLRequest class",
27-
"ext-imagick": "If you use Image class ImageMagickHandler",
28-
"ext-gd": "If you use Image class GDHandler",
32+
"ext-dom": "If you use TestResponse",
2933
"ext-exif": "If you run Image class tests",
30-
"ext-simplexml": "If you format XML",
34+
"ext-fileinfo": "Improves mime type detection for files",
35+
"ext-gd": "If you use Image class GDHandler",
36+
"ext-imagick": "If you use Image class ImageMagickHandler",
37+
"ext-libxml": "If you use TestResponse",
38+
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
39+
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
3140
"ext-mysqli": "If you use MySQL",
3241
"ext-oci8": "If you use Oracle Database",
3342
"ext-pgsql": "If you use PostgreSQL",
34-
"ext-sqlsrv": "If you use SQL Server",
35-
"ext-sqlite3": "If you use SQLite3",
36-
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
37-
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
43+
"ext-readline": "Improves CLI::input() usability",
3844
"ext-redis": "If you use Cache class RedisHandler",
39-
"ext-dom": "If you use TestResponse",
40-
"ext-libxml": "If you use TestResponse",
41-
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()",
42-
"ext-fileinfo": "Improves mime type detection for files",
43-
"ext-readline": "Improves CLI::input() usability"
44-
},
45-
"config": {
46-
"optimize-autoloader": true,
47-
"preferred-install": "dist",
48-
"sort-packages": true
45+
"ext-simplexml": "If you format XML",
46+
"ext-sqlite3": "If you use SQLite3",
47+
"ext-sqlsrv": "If you use SQL Server",
48+
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()"
4949
},
5050
"autoload": {
5151
"psr-4": {
@@ -55,12 +55,12 @@
5555
"**/Database/Migrations/**"
5656
]
5757
},
58+
"config": {
59+
"optimize-autoloader": true,
60+
"preferred-install": "dist",
61+
"sort-packages": true
62+
},
5863
"scripts": {
5964
"test": "phpunit"
60-
},
61-
"support": {
62-
"forum": "https://forum.codeigniter.com/",
63-
"source": "https://github.com/codeigniter4/CodeIgniter4",
64-
"slack": "https://codeigniterchat.slack.com"
6565
}
6666
}

admin/starter/composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "codeigniter4/appstarter",
3-
"type": "project",
43
"description": "CodeIgniter4 starter app",
5-
"homepage": "https://codeigniter.com",
64
"license": "MIT",
5+
"type": "project",
6+
"homepage": "https://codeigniter.com",
7+
"support": {
8+
"forum": "https://forum.codeigniter.com/",
9+
"source": "https://github.com/codeigniter4/CodeIgniter4",
10+
"slack": "https://codeigniterchat.slack.com"
11+
},
712
"require": {
813
"php": "^7.4 || ^8.0",
914
"codeigniter4/framework": "^4.0"
@@ -13,11 +18,6 @@
1318
"mikey179/vfsstream": "^1.6",
1419
"phpunit/phpunit": "^9.1"
1520
},
16-
"config": {
17-
"optimize-autoloader": true,
18-
"preferred-install": "dist",
19-
"sort-packages": true
20-
},
2121
"autoload": {
2222
"exclude-from-classmap": [
2323
"**/Database/Migrations/**"
@@ -28,12 +28,12 @@
2828
"Tests\\Support\\": "tests/_support"
2929
}
3030
},
31+
"config": {
32+
"optimize-autoloader": true,
33+
"preferred-install": "dist",
34+
"sort-packages": true
35+
},
3136
"scripts": {
3237
"test": "phpunit"
33-
},
34-
"support": {
35-
"forum": "https://forum.codeigniter.com/",
36-
"source": "https://github.com/codeigniter4/CodeIgniter4",
37-
"slack": "https://codeigniterchat.slack.com"
3838
}
3939
}

composer.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "codeigniter4/codeigniter4",
3-
"type": "project",
43
"description": "The CodeIgniter framework v4",
5-
"homepage": "https://codeigniter.com",
64
"license": "MIT",
5+
"type": "project",
6+
"homepage": "https://codeigniter.com",
7+
"support": {
8+
"forum": "https://forum.codeigniter.com/",
9+
"source": "https://github.com/codeigniter4/CodeIgniter4",
10+
"slack": "https://codeigniterchat.slack.com"
11+
},
712
"require": {
813
"php": "^7.4 || ^8.0",
914
"ext-intl": "*",
@@ -13,9 +18,9 @@
1318
"psr/log": "^1.1"
1419
},
1520
"require-dev": {
16-
"kint-php/kint": "^5.0.4",
1721
"codeigniter/coding-standard": "^1.5",
1822
"fakerphp/faker": "^1.9",
23+
"kint-php/kint": "^5.0.4",
1924
"mikey179/vfsstream": "^1.6",
2025
"nexusphp/cs-config": "^3.6",
2126
"nexusphp/tachycardia": "^1.0",
@@ -29,33 +34,23 @@
2934
},
3035
"suggest": {
3136
"ext-curl": "If you use CURLRequest class",
32-
"ext-imagick": "If you use Image class ImageMagickHandler",
33-
"ext-gd": "If you use Image class GDHandler",
37+
"ext-dom": "If you use TestResponse",
3438
"ext-exif": "If you run Image class tests",
35-
"ext-simplexml": "If you format XML",
39+
"ext-fileinfo": "Improves mime type detection for files",
40+
"ext-gd": "If you use Image class GDHandler",
41+
"ext-imagick": "If you use Image class ImageMagickHandler",
42+
"ext-libxml": "If you use TestResponse",
43+
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
44+
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
3645
"ext-mysqli": "If you use MySQL",
3746
"ext-oci8": "If you use Oracle Database",
3847
"ext-pgsql": "If you use PostgreSQL",
39-
"ext-sqlsrv": "If you use SQL Server",
40-
"ext-sqlite3": "If you use SQLite3",
41-
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
42-
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
48+
"ext-readline": "Improves CLI::input() usability",
4349
"ext-redis": "If you use Cache class RedisHandler",
44-
"ext-dom": "If you use TestResponse",
45-
"ext-libxml": "If you use TestResponse",
46-
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()",
47-
"ext-fileinfo": "Improves mime type detection for files",
48-
"ext-readline": "Improves CLI::input() usability"
49-
},
50-
"config": {
51-
"optimize-autoloader": true,
52-
"preferred-install": "dist",
53-
"sort-packages": true
54-
},
55-
"extra": {
56-
"branch-alias": {
57-
"dev-develop": "4.x-dev"
58-
}
50+
"ext-simplexml": "If you format XML",
51+
"ext-sqlite3": "If you use SQLite3",
52+
"ext-sqlsrv": "If you use SQL Server",
53+
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()"
5954
},
6055
"autoload": {
6156
"psr-4": {
@@ -71,6 +66,16 @@
7166
"Utils\\": "utils/"
7267
}
7368
},
69+
"config": {
70+
"optimize-autoloader": true,
71+
"preferred-install": "dist",
72+
"sort-packages": true
73+
},
74+
"extra": {
75+
"branch-alias": {
76+
"dev-develop": "4.x-dev"
77+
}
78+
},
7479
"scripts": {
7580
"post-update-cmd": [
7681
"CodeIgniter\\ComposerScripts::postUpdate",
@@ -81,8 +86,6 @@
8186
"bash -c \"XDEBUG_MODE=off phpstan analyse\"",
8287
"rector process --dry-run"
8388
],
84-
"sa": "@analyze",
85-
"test": "phpunit",
8689
"cs": [
8790
"Composer\\Config::disableProcessTimeout",
8891
"php-cs-fixer fix --ansi --verbose --dry-run --diff --config=.php-cs-fixer.user-guide.php",
@@ -95,17 +98,14 @@
9598
"php-cs-fixer fix --ansi --verbose --diff --config=.php-cs-fixer.no-header.php",
9699
"php-cs-fixer fix --ansi --verbose --diff"
97100
],
98-
"style": "@cs-fix"
101+
"sa": "@analyze",
102+
"style": "@cs-fix",
103+
"test": "phpunit"
99104
},
100105
"scripts-descriptions": {
101106
"analyze": "Run static analysis",
102-
"test": "Run unit tests",
103107
"cs": "Check the coding style",
104-
"cs-fix": "Fix the coding style"
105-
},
106-
"support": {
107-
"forum": "https://forum.codeigniter.com/",
108-
"source": "https://github.com/codeigniter4/CodeIgniter4",
109-
"slack": "https://codeigniterchat.slack.com"
108+
"cs-fix": "Fix the coding style",
109+
"test": "Run unit tests"
110110
}
111111
}

0 commit comments

Comments
 (0)