Skip to content

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 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions composer.json
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",
Copy link
Member

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.

"irc": "irc://irc.freenode.org/cakephp",
Copy link
Member

Choose a reason for hiding this comment

The 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",
Expand All @@ -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/"
Expand All @@ -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": [
Expand All @@ -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
}
}
}