Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Add support to Laravel 8 (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebdesign authored Sep 10, 2020
1 parent 189b607 commit 15db8f4
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4']

name: PHP ${{ matrix.php-versions }} tests

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG-8.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change log


## v8.0.0 (2020-09-08)

### Added

- Added support to Laravel 8
90 changes: 45 additions & 45 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "laravelium/sitemap",
"description": "Laravelium Sitemap package for Laravel.",
"homepage": "https://laravelium.com",
"keywords": ["laravelium", "laravel", "php", "sitemap", "generator", "xml", "html", "google-news"],
"license": "MIT",
"authors": [
{
"name": "Rumen Damyanov",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://darumen.com"
}
],
"support": {
"issues": "https://github.com/Laravelium/laravel-sitemap/issues",
"source": "https://github.com/Laravelium/laravel-sitemap",
"wiki": "https://github.com/Laravelium/laravel-sitemap/wiki"
},
"require": {
"php": ">=7.2.5",
"illuminate/support": "^7.0",
"illuminate/filesystem": "^7.0"
},
"require-dev": {
"laravel/framework": "^7.0",
"phpunit/phpunit": "^8.0",
"orchestra/testbench-core": "^5.0",
"php-coveralls/php-coveralls" : "^2.2"
},
"autoload": {
"psr-0": {
"Laravelium\\Sitemap": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravelium\\Sitemap\\SitemapServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
{
"name": "laravelium/sitemap",
"description": "Laravelium Sitemap package for Laravel.",
"homepage": "https://laravelium.com",
"keywords": ["laravelium", "laravel", "php", "sitemap", "generator", "xml", "html", "google-news"],
"license": "MIT",
"authors": [
{
"name": "Rumen Damyanov",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://darumen.com"
}
],
"support": {
"issues": "https://github.com/Laravelium/laravel-sitemap/issues",
"source": "https://github.com/Laravelium/laravel-sitemap",
"wiki": "https://github.com/Laravelium/laravel-sitemap/wiki"
},
"require": {
"php": ">=7.3",
"illuminate/support": "^8.0",
"illuminate/filesystem": "^8.0"
},
"require-dev": {
"laravel/framework": "^8.0",
"phpunit/phpunit": "^9.3",
"orchestra/testbench-core": "^6.0",
"php-coveralls/php-coveralls" : "^2.2"
},
"autoload": {
"psr-0": {
"Laravelium\\Sitemap": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravelium\\Sitemap\\SitemapServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 15db8f4

Please sign in to comment.