Skip to content

Commit

Permalink
Merge branch 'release/4.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
verschuur committed Apr 5, 2022
2 parents 7b8102e + 0380834 commit ed6c333
Show file tree
Hide file tree
Showing 4 changed files with 2,837 additions and 1,446 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [4.0.0] - 2022-04-05

### Added

- Laravel 9 support
- PHP 7.3 as a dependency as Laravel 8 still supports it

### Changed

- PHPUnit configuration
- Analysis script alias

### Removed

- Laravel 5, 6 and 7 support as they are no longer officialy supported

## [3.1.0] - 2020-09-30

### Added
Expand Down
17 changes: 11 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
{
"name": "verschuur/laravel-robotstxt",
"description": "Set the robots.txt content dynamically based on the Laravel app environment.",
"keywords": ["php", "laravel", "robots.txt"],
"keywords": [
"php",
"laravel",
"robots.txt"
],
"authors": [
{
"name": "Govert Verschuur",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "^5.6|^6.0|^7.0|^8.0"
"php": "^7.3|^8.0",
"laravel/framework": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand All @@ -24,12 +29,12 @@
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.0",
"phpstan/phpstan": "^0.12"
"orchestra/testbench": "^7.0",
"phpstan/phpstan": "^1.4"
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml --colors=always",
"stan": "vendor/bin/phpstan analyse src tests --level 5"
"analyse": "vendor/bin/phpstan analyse src tests --level 5"
},
"extra": {
"laravel": {
Expand All @@ -38,4 +43,4 @@
]
}
}
}
}
Loading

0 comments on commit ed6c333

Please sign in to comment.