Skip to content

Commit

Permalink
Merge pull request #247 from cakephp/composer-normalize
Browse files Browse the repository at this point in the history
Run composer normalize over composer.json
  • Loading branch information
dereuromark authored Nov 27, 2023
2 parents 9ebaac4 + df2debd commit 6079364
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"name": "cakephp/localized",
"description": "CakePHP Localized Plugin",
"type": "cakephp-plugin",
"keywords": ["cakephp", "localized", "i18n", "l10n"],
"homepage": "https://github.com/cakephp/localized",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"localized",
"i18n",
"l10n"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/localized/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/localized",
"support": {
"issues": "https://github.com/cakephp/localized/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
Expand All @@ -31,35 +36,35 @@
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Cake\\Localized\\Test\\": "tests/"
"Cake\\Localized\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"analyse": [
"@stan",
"@psalm"
],
"check": [
"@cs-check",
"@test",
"@analyse"
],
"analyse": [
"@stan",
"@psalm"
],
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml",
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"test": "phpunit --stderr",
"stan": "phpstan analyse src/",
"psalm": "php vendor/psalm/phar/psalm.phar --show-info=false src/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.0.0 psalm/phar:^5.0 && mv composer.backup composer.json",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon",
"psalm-rebuild-baseline": "php vendor/psalm/phar/psalm.phar --show-info=false --set-baseline=psalm-baseline.xml src/",
"rector": "rector process src/",
"rector-setup": "cp composer.json composer.backup && composer require --dev rector/rector:^0.7 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
"stan": "phpstan analyse src/",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.0.0 psalm/phar:^5.0 && mv composer.backup composer.json",
"test": "phpunit --stderr"
}
}

0 comments on commit 6079364

Please sign in to comment.