Skip to content

Commit

Permalink
update composer, cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
lsmith77 committed Dec 24, 2019
1 parent 1b27de7 commit 478d42b
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 4,286 deletions.
5 changes: 5 additions & 0 deletions changelog.md → CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 0.4.0
- Added Laravel 6.0 compatibility
- Removed RokkaLaravel::getClient()
- Various other cleanups

## Version 0.3.1
- Update readme.md

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions readme.md → README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ the optional Facade inside `config/app.php`.
]
'aliases' => [
// ...
'Rokka' => Rokka\RokkaLaravel\Facade::class
'Rokka' => Rokka\RokkaLaravel\Facades\Rokka::class
]
```

Expand Down Expand Up @@ -62,4 +62,4 @@ the issue tracker.

## License

MIT. Please see the [license file](license.md) for more information.
MIT. Please see the [license file](LICENSE.MD) for more information.
17 changes: 4 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,9 @@
"homepage": "https://github.com/rokka-io/rokka-laravel",
"keywords": ["Laravel", "Rokka", "image", "resizing"],
"require": {
"illuminate/support": "~5",
"rokka/client": "~1.8.0",
"rokka/client-cli": "~1.7.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.0"
"illuminate/support": "^5|^6",
"rokka/client": "^1.8",
"rokka/client-cli": "^1.7"
},
"autoload": {
"files": [
Expand All @@ -28,18 +24,13 @@
"Rokka\\RokkaLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rokka\\RokkaLaravel\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Rokka\\RokkaLaravel\\RokkaLaravelServiceProvider"
],
"aliases": {
"Rokka": "Rokka\\RokkaLaravel\\Facade"
"Rokka": "Rokka\\RokkaLaravel\\Facades\\Rokka"
}
}
}
Expand Down
Loading

0 comments on commit 478d42b

Please sign in to comment.