Skip to content

Commit

Permalink
Normalize composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
alies-dev committed Apr 2, 2024
1 parent 3d13ea2 commit a5a2db9
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"require": {
"php": "^7.3 || ^8.0",
"ext-simplexml": "*",
"barryvdh/laravel-ide-helper": ">=2.8.0",
"illuminate/config": "^6.0 || ^8.0",
"illuminate/container": "^6.0 || ^8.0",
"illuminate/contracts": "^6.0 || ^8.0",
Expand All @@ -22,18 +23,19 @@
"illuminate/routing": "^6.0 || ^8.0",
"illuminate/support": "^6.0 || ^8.0",
"illuminate/view": "^6.0 || ^8.0",
"vimeo/psalm": "^4.8.1",
"orchestra/testbench": "^4.0 || ^6.0",
"barryvdh/laravel-ide-helper": ">=2.8.0"
"vimeo/psalm": "^4.8.1"
},
"require-dev": {
"codeception/codeception": "^4.1.6",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"codeception/module-phpbrowser": "^1.0.0",
"slevomat/coding-standard": "^6.2",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
"weirdan/codeception-psalm-module": "^0.13.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
Expand All @@ -44,30 +46,28 @@
"Tests\\Psalm\\LaravelPlugin\\": "tests"
}
},
"scripts": {
"analyze": "@psalm",
"lint": "phpcs -n",
"lint-fix": "phpcbf -n",
"psalm": "psalm",
"psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "codecept run --skip-group skip",
"check": [
"@analyze",
"@lint",
"@test"
]
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
"scripts": {
"analyze": "@psalm",
"check": [
"@analyze",
"@lint",
"@test"
],
"lint": "phpcs -n",
"lint-fix": "phpcbf -n",
"psalm": "psalm",
"psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "codecept run --skip-group skip"
}
}

0 comments on commit a5a2db9

Please sign in to comment.