Skip to content

Commit

Permalink
Merge pull request #15 from ARCANEDEV/develop
Browse files Browse the repository at this point in the history
Adding Laravel 5.5 Support
  • Loading branch information
arcanedev-maroc committed Sep 25, 2017
2 parents 5be18be + 65a08cb commit 3dce080
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 26 deletions.
16 changes: 10 additions & 6 deletions .gitattributes
@@ -1,8 +1,12 @@
* text=auto

/.github export-ignore
/_docs export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.travis.yml export-ignore
/phpunit.xml export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore
CONTRIBUTING.md export-ignore
5 changes: 1 addition & 4 deletions .travis.yml
Expand Up @@ -11,12 +11,9 @@ matrix:
allow_failures:
- php: nightly

env:
- TESTBENCH_VERSION=3.4.*

before_script:
- travis_retry composer self-update
- travis_retry composer require --prefer-source --no-interaction --dev "orchestra/testbench:${TESTBENCH_VERSION}"
- travis_retry composer install --prefer-source --no-interaction

script:
- composer validate
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -19,7 +19,7 @@ This package allows you to manage and generate a sitemap without you having to a
* Easy setup & configuration.
* Well documented & IDE Friendly.
* Well tested with maximum code quality.
* Laravel `5.4` is supported.
* Laravel `5.4 | 5.5` are supported.
* Made with :heart: & :coffee:.

## Table of contents
Expand All @@ -41,7 +41,7 @@ If you discover any security related issues, please email arcanedev.maroc@gmail.
- [ARCANEDEV][link-author]
- [All Contributors][link-contributors]

[badge_laravel]: https://img.shields.io/badge/Laravel-5.4-orange.svg?style=flat-square
[badge_laravel]: https://img.shields.io/badge/Laravel-5.4%20&%205.5-orange.svg?style=flat-square
[badge_license]: https://img.shields.io/packagist/l/arcanedev/laravel-sitemap.svg?style=flat-square
[badge_build]: https://img.shields.io/travis/ARCANEDEV/LaravelSitemap.svg?style=flat-square
[badge_coverage]: https://img.shields.io/scrutinizer/coverage/g/ARCANEDEV/LaravelSitemap.svg?style=flat-square
Expand Down
2 changes: 1 addition & 1 deletion _docs/0-Home.md
Expand Up @@ -5,7 +5,7 @@ This package allows you to manage and generate a sitemap without you having to a
### Features

* Easy setup & configuration.
* Laravel `5.4` is supported.
* Laravel `5.4 | 5.5` are supported.
* SEO-Friendly (Search engine optimization).
* Respects the [sitemaps.org](https://www.sitemaps.org/protocol.html) schemas.
* Multiple URLs & Sitemaps management.
Expand Down
10 changes: 5 additions & 5 deletions _docs/1-Installation-and-Setup.md
Expand Up @@ -18,15 +18,13 @@ The Laravel Sitemap package has a few system requirements:
| Laravel Sitemap | Laravel |
|:---------------------------------------------|:-----------------------------|
| ![Laravel Sitemap v1.x][laravel_sitemap_1_x] | ![Laravel v5.4][laravel_5_4] |
| ![Laravel Sitemap v2.x][laravel_sitemap_2_x] | ![Laravel v5.5][laravel_5_5] |

[laravel_5_0]: https://img.shields.io/badge/v5.0-supported-brightgreen.svg?style=flat-square "Laravel v5.0"
[laravel_5_1]: https://img.shields.io/badge/v5.1-supported-brightgreen.svg?style=flat-square "Laravel v5.1"
[laravel_5_2]: https://img.shields.io/badge/v5.2-supported-brightgreen.svg?style=flat-square "Laravel v5.2"
[laravel_5_3]: https://img.shields.io/badge/v5.3-supported-brightgreen.svg?style=flat-square "Laravel v5.3"
[laravel_5_4]: https://img.shields.io/badge/v5.4-supported-brightgreen.svg?style=flat-square "Laravel v5.4"
[laravel_5_5]: https://img.shields.io/badge/v5.5-supported-brightgreen.svg?style=flat-square "Laravel v5.5"

[laravel_sitemap_0_x]: https://img.shields.io/badge/version-0.*-blue.svg?style=flat-square "Laravel Sitemap v0.*"
[laravel_sitemap_1_x]: https://img.shields.io/badge/version-1.*-blue.svg?style=flat-square "Laravel Sitemap v1.*"
[laravel_sitemap_2_x]: https://img.shields.io/badge/version-2.*-blue.svg?style=flat-square "Laravel Sitemap v2.*"

## Composer

Expand All @@ -40,6 +38,8 @@ composer require arcanedev/laravel-sitemap

### Setup

> **NOTE :** The package will automatically register itself if you're using Laravel `>= v5.5`, so you can skip this section.
Once the package is installed, you can register the service provider in `config/app.php` in the `providers` array:

```php
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Expand Up @@ -15,11 +15,12 @@
"license": "MIT",
"require": {
"php": ">=7.0",
"arcanedev/support": "~4.0"
"arcanedev/support": "~4.2.0"
},
"require-dev": {
"phpunit/phpcov": "~3.0",
"phpunit/phpunit": "~5.0",
"orchestra/testbench": "~3.5.0",
"phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0",
"spatie/phpunit-snapshot-assertions": "^1.0"
},
"autoload": {
Expand All @@ -33,12 +34,11 @@
"Arcanedev\\LaravelSitemap\\Tests\\": "tests/"
}
},
"scripts": {
"testbench": "composer require --dev \"orchestra/testbench=~3.4\""
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"laravel": {
"providers": [
"Arcanedev\\LaravelSitemap\\LaravelSitemapServiceProvider"
]
}
}
}
File renamed without changes.

0 comments on commit 3dce080

Please sign in to comment.