Skip to content

Commit

Permalink
Merge pull request #58 from marvinlabs/develop
Browse files Browse the repository at this point in the history
New release
  • Loading branch information
vpratfr authored Mar 12, 2020
2 parents 50c8cae + 451adc4 commit 2ab79a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^7.0",
"php": "^7.1",
"spatie/laravel-html": "^2.19.0",
"appstract/laravel-blade-directives": "^1.6.0",
"illuminate/support": "^6.0.0"
"illuminate/support": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^4.0|^5.0",
"symfony/dom-crawler": "^4.1"
},
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions src/Bootstrap/Forms/OldFormInputProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public function __construct(Request $request)

public function get($key, $default = null)
{
return $this->request->old(field_name_to_id($key), $default);
return $this->request->old($key, $default);
}
}
}

0 comments on commit 2ab79a7

Please sign in to comment.