Skip to content

Commit 2e62330

Browse files
authored
Merge pull request #649 from cakephp/composer-normalize
Run composer normalize over composer.json
2 parents 0ce69f5 + 6f6cc31 commit 2e62330

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

composer.json

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
11
{
22
"name": "cakephp/authentication",
33
"description": "Authentication plugin for CakePHP",
4+
"license": "MIT",
5+
"type": "cakephp-plugin",
46
"keywords": [
57
"auth",
68
"authentication",
79
"cakephp",
810
"middleware"
911
],
10-
"type": "cakephp-plugin",
12+
"authors": [
13+
{
14+
"name": "CakePHP Community",
15+
"homepage": "https://github.com/cakephp/authentication/graphs/contributors"
16+
}
17+
],
1118
"homepage": "https://cakephp.org",
19+
"support": {
20+
"issues": "https://github.com/cakephp/authentication/issues",
21+
"forum": "https://stackoverflow.com/tags/cakephp",
22+
"irc": "irc://irc.freenode.org/cakephp",
23+
"source": "https://github.com/cakephp/authentication",
24+
"docs": "https://book.cakephp.org/authentication/2/en/"
25+
},
1226
"require": {
1327
"cakephp/http": "^5.0",
1428
"laminas/laminas-diactoros": "^3.0",
@@ -24,13 +38,12 @@
2438
"phpunit/phpunit": "^10.1.0"
2539
},
2640
"suggest": {
27-
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).",
28-
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".",
29-
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency",
3041
"ext-ldap": "Make sure this php extension is installed and enabled on your system if you want to use the built-in LDAP adapter for \"LdapIdentifier\".",
31-
"cakephp/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher."
42+
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".",
43+
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).",
44+
"cakephp/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher.",
45+
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency"
3246
},
33-
"license": "MIT",
3447
"autoload": {
3548
"psr-4": {
3649
"Authentication\\": "src/"
@@ -44,18 +57,11 @@
4457
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/"
4558
}
4659
},
47-
"authors": [
48-
{
49-
"name": "CakePHP Community",
50-
"homepage": "https://github.com/cakephp/authentication/graphs/contributors"
51-
}
52-
],
53-
"support": {
54-
"issues": "https://github.com/cakephp/authentication/issues",
55-
"forum": "https://stackoverflow.com/tags/cakephp",
56-
"irc": "irc://irc.freenode.org/cakephp",
57-
"source": "https://github.com/cakephp/authentication",
58-
"docs": "https://book.cakephp.org/authentication/2/en/"
60+
"config": {
61+
"allow-plugins": {
62+
"dealerdirect/phpcodesniffer-composer-installer": true
63+
},
64+
"sort-packages": true
5965
},
6066
"scripts": {
6167
"check": [
@@ -66,20 +72,14 @@
6672
"cs-fix": "phpcbf --colors -p src/ tests/",
6773
"phpstan": "tools/phpstan analyse",
6874
"psalm": "tools/psalm --show-info=false",
75+
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
6976
"stan": [
7077
"@phpstan",
7178
"@psalm"
7279
],
7380
"stan-baseline": "tools/phpstan --generate-baseline",
74-
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
7581
"stan-setup": "phive install",
7682
"test": "phpunit",
7783
"test-coverage": "phpunit --coverage-clover=clover.xml"
78-
},
79-
"config": {
80-
"sort-packages": true,
81-
"allow-plugins": {
82-
"dealerdirect/phpcodesniffer-composer-installer": true
83-
}
8484
}
8585
}

0 commit comments

Comments
 (0)