Skip to content
This repository has been archived by the owner on May 28, 2023. It is now read-only.

Commit

Permalink
L5.5 Preps
Browse files Browse the repository at this point in the history
  • Loading branch information
percymamedy committed Jun 12, 2017
1 parent 0cd8c20 commit 5cd25cc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -42,6 +42,9 @@ Install the package through composer:
```bash
$ composer require findbrok/laravel-personality-insights
```
> If you are using Laravel >= 5.5, you can skip service registration
> and aliases registration thanks to Laravel auto package discovery
> feature.
Add the Service Provider to your providers array in ```config/app.php```,
see [Registering Providers](https://laravel.com/docs/master/providers#registering-providers)
Expand Down
15 changes: 10 additions & 5 deletions composer.json
Expand Up @@ -11,10 +11,10 @@
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.0 - 5.4",
"findbrok/php-watson-api-bridge": "^1.0",
"ramsey/uuid": "^3.4",
"netresearch/jsonmapper": "^1.1"
"findbrok/php-watson-api-bridge": "^1.0",
"illuminate/support": "~5.0",
"netresearch/jsonmapper": "^1.1",
"ramsey/uuid": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0|~5.0",
Expand All @@ -32,7 +32,12 @@
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"laravel": {
"providers": [
"FindBrok\\PersonalityInsights\\InsightsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down

0 comments on commit 5cd25cc

Please sign in to comment.