Skip to content

Commit

Permalink
Composer normalize (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm authored Dec 19, 2023
1 parent 8ca4b39 commit ac92b78
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"name": "staabm/phpstan-todo-by",
"type": "phpstan-extension",
"license": "MIT",
"keywords": ["dev", "phpstan", "phpstan-extension", "static analysis"],

"type": "phpstan-extension",
"keywords": [
"dev",
"phpstan",
"phpstan-extension",
"static analysis"
],
"require": {
"php": "^7.4 || ^8.0",
"composer/semver": "^3.4",
"nikolaposa/version": "^4.1"
},

"require-dev": {
"friendsofphp/php-cs-fixer": "^3.41",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9 || ^10.5"
},

"autoload": {
"psr-4": {
"staabm\\PHPStanTodoBy\\": "src/"
Expand All @@ -26,22 +28,22 @@
"tests/"
]
},
"scripts": {
"phpstan": "vendor/bin/phpstan --ansi",
"test": "vendor/bin/phpunit tests/",
"cs": "vendor/bin/php-cs-fixer fix --ansi"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --ansi",
"phpstan": "vendor/bin/phpstan --ansi",
"test": "vendor/bin/phpunit tests/"
}
}

0 comments on commit ac92b78

Please sign in to comment.