Skip to content

Commit

Permalink
Reorder composer.json to prioritize PHP requirement
Browse files Browse the repository at this point in the history
The composer.json file has been restructured to highlight the PHP version requirement. This change improves ease-of-access to vital information, allowing developers to quickly identify the necessary PHP version during package definition.
  • Loading branch information
MarjovanLier committed Jan 9, 2024
1 parent d36f05d commit c536a4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
"role": "Developer"
}
],
"require": {
"php": "^8.2"
},
"autoload": {
"psr-4": {
"MarjovanLier\\StringManipulation\\": "src"
Expand All @@ -41,6 +38,9 @@
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2"
},
"require-dev": {
"infection/infection": "^0.27.9",
"laravel/pint": "^1.13",
Expand Down Expand Up @@ -82,4 +82,4 @@
"test:phpunit": "php -d memory_limit=-1 ./vendor/bin/phpunit --no-coverage --no-logging",
"test:rector": "php -d memory_limit=-1 ./vendor/bin/rector --dry-run"
}
}
}

0 comments on commit c536a4c

Please sign in to comment.