Skip to content

Commit

Permalink
Merge pull request #3 from webstone/fix-laravel-5.x-compatibility
Browse files Browse the repository at this point in the history
Make laravel-lang-installer compatible with Laravel v5.x
  • Loading branch information
ablunier authored Sep 15, 2017
2 parents b5ec52b + 79fe970 commit d394ed6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.*"
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Services/GithubResourcesRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function getVersions()
*/
protected function getUrl($version, $lang, $file)
{
return $this->getLocation() . '/' . $version . '/' . $lang . '/' . $file . '.php';
return $this->getLocation() . '/' . $version . '/src/' . $lang . '/' . $file . '.php';
}

/**
Expand Down

0 comments on commit d394ed6

Please sign in to comment.