Skip to content

Commit 1b3ed3d

Browse files
authored
[Chore] Update / Clean Up Dependencies (#18)
* (chore) Update dependencies * (chore) Ignore phpunit results cache * (chore) Update readme, remove laravel 5.* references
1 parent 2e74413 commit 1b3ed3d

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ vendor
22
composer.lock
33
.php_cs.cache
44
coverage
5+
.phpunit.result.cache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
},
2222
"require-dev": {
2323
"friendsofphp/php-cs-fixer": "^2.1",
24-
"illuminate/container": "^6",
24+
"illuminate/container": "^6.0",
2525
"mockery/mockery": "^1.2",
26-
"orchestra/testbench": "^4",
26+
"orchestra/testbench": "^4.0",
27+
"php-coveralls/php-coveralls": "^2.1",
2728
"phpunit/phpunit": "^8.0",
28-
"satooshi/php-coveralls": "^1.0",
2929
"squizlabs/php_codesniffer": "^2.8"
3030
},
3131
"autoload": {

readme.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,7 @@ composer require jaspaul/laravel-rollout
1414

1515
### Configuring the Service Provider
1616

17-
On Laravel 5.5, the package discovery will configure the service provider automatically.
18-
19-
On Laravel 5.4, open config/app.php and register the required service provider above your application providers.
20-
21-
```php
22-
'providers' => [
23-
...
24-
Jaspaul\LaravelRollout\ServiceProvider::class
25-
...
26-
]
27-
```
17+
Package discovery will configure the service provider automatically.
2818

2919
### Setting up Storage
3020

@@ -36,7 +26,7 @@ php artisan vendor:publish --provider 'Jaspaul\LaravelRollout\ServiceProvider'
3626

3727
#### Setting up a Cache
3828

39-
If you intend to use cache to store the settings for rollout, be sure to [enable the cache](https://laravel.com/docs/5.4/cache) for your Laravel application. Note if you are using the cache, a cache clear during deployment will cause your rollout settings to be purged. If you require persistence for these settings use the option below.
29+
If you intend to use cache to store the settings for rollout, be sure to [enable the cache](https://laravel.com/docs/6.x/cache) for your Laravel application. Note if you are using the cache, a cache clear during deployment will cause your rollout settings to be purged. If you require persistence for these settings use the option below.
4030

4131
#### Setting up Persistent Storage
4232

0 commit comments

Comments
 (0)