-
Notifications
You must be signed in to change notification settings - Fork 106
Run composer normalize over composer.json #649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,28 @@ | ||
{ | ||
"name": "cakephp/authentication", | ||
"description": "Authentication plugin for CakePHP", | ||
"license": "MIT", | ||
"type": "cakephp-plugin", | ||
"keywords": [ | ||
"auth", | ||
"authentication", | ||
"cakephp", | ||
"middleware" | ||
], | ||
"type": "cakephp-plugin", | ||
"authors": [ | ||
{ | ||
"name": "CakePHP Community", | ||
"homepage": "https://github.com/cakephp/authentication/graphs/contributors" | ||
} | ||
], | ||
"homepage": "https://cakephp.org", | ||
"support": { | ||
"issues": "https://github.com/cakephp/authentication/issues", | ||
"forum": "https://stackoverflow.com/tags/cakephp", | ||
"irc": "irc://irc.freenode.org/cakephp", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This irc linked should be dropped. |
||
"source": "https://github.com/cakephp/authentication", | ||
"docs": "https://book.cakephp.org/authentication/2/en/" | ||
}, | ||
"require": { | ||
"cakephp/http": "^5.0", | ||
"laminas/laminas-diactoros": "^3.0", | ||
|
@@ -24,13 +38,12 @@ | |
"phpunit/phpunit": "^10.1.0" | ||
}, | ||
"suggest": { | ||
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).", | ||
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".", | ||
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency", | ||
"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\".", | ||
"cakephp/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher." | ||
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".", | ||
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).", | ||
"cakephp/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher.", | ||
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency" | ||
}, | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"Authentication\\": "src/" | ||
|
@@ -44,18 +57,11 @@ | |
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "CakePHP Community", | ||
"homepage": "https://github.com/cakephp/authentication/graphs/contributors" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/cakephp/authentication/issues", | ||
"forum": "https://stackoverflow.com/tags/cakephp", | ||
"irc": "irc://irc.freenode.org/cakephp", | ||
"source": "https://github.com/cakephp/authentication", | ||
"docs": "https://book.cakephp.org/authentication/2/en/" | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"check": [ | ||
|
@@ -66,20 +72,14 @@ | |
"cs-fix": "phpcbf --colors -p src/ tests/", | ||
"phpstan": "tools/phpstan analyse", | ||
"psalm": "tools/psalm --show-info=false", | ||
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml", | ||
"stan": [ | ||
"@phpstan", | ||
"@psalm" | ||
], | ||
"stan-baseline": "tools/phpstan --generate-baseline", | ||
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml", | ||
"stan-setup": "phive install", | ||
"test": "phpunit", | ||
"test-coverage": "phpunit --coverage-clover=clover.xml" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be replaced with our official forum.