mirror of
https://github.com/flarum/framework.git
synced 2025-02-06 19:39:45 +08:00
updated constraint for 5.7 (#1698)
This commit is contained in:
parent
9989e76750
commit
8e37c2b8d8
|
@ -26,20 +26,20 @@
|
||||||
"dflydev/fig-cookies": "^1.0.2",
|
"dflydev/fig-cookies": "^1.0.2",
|
||||||
"doctrine/dbal": "^2.7",
|
"doctrine/dbal": "^2.7",
|
||||||
"franzl/whoops-middleware": "^0.4.0",
|
"franzl/whoops-middleware": "^0.4.0",
|
||||||
"illuminate/bus": "5.5.*",
|
"illuminate/bus": "5.7.*",
|
||||||
"illuminate/cache": "5.5.*",
|
"illuminate/cache": "5.7.*",
|
||||||
"illuminate/config": "5.5.*",
|
"illuminate/config": "5.7.*",
|
||||||
"illuminate/container": "5.5.*",
|
"illuminate/container": "5.7.*",
|
||||||
"illuminate/contracts": "5.5.*",
|
"illuminate/contracts": "5.7.*",
|
||||||
"illuminate/database": "5.5.*",
|
"illuminate/database": "5.7.*",
|
||||||
"illuminate/events": "5.5.*",
|
"illuminate/events": "5.7.*",
|
||||||
"illuminate/filesystem": "5.5.*",
|
"illuminate/filesystem": "5.7.*",
|
||||||
"illuminate/hashing": "5.5.*",
|
"illuminate/hashing": "5.7.*",
|
||||||
"illuminate/mail": "5.5.*",
|
"illuminate/mail": "5.7.*",
|
||||||
"illuminate/session": "5.5.*",
|
"illuminate/session": "5.7.*",
|
||||||
"illuminate/support": "5.5.*",
|
"illuminate/support": "5.7.*",
|
||||||
"illuminate/validation": "5.5.*",
|
"illuminate/validation": "5.7.*",
|
||||||
"illuminate/view": "5.5.*",
|
"illuminate/view": "5.7.*",
|
||||||
"intervention/image": "^2.3.0",
|
"intervention/image": "^2.3.0",
|
||||||
"league/flysystem": "^1.0.11",
|
"league/flysystem": "^1.0.11",
|
||||||
"matthiasmullie/minify": "^1.3",
|
"matthiasmullie/minify": "^1.3",
|
||||||
|
@ -55,7 +55,6 @@
|
||||||
"s9e/text-formatter": "^1.2.0",
|
"s9e/text-formatter": "^1.2.0",
|
||||||
"symfony/config": "^3.3",
|
"symfony/config": "^3.3",
|
||||||
"symfony/console": "^3.3",
|
"symfony/console": "^3.3",
|
||||||
"symfony/http-foundation": "^3.3",
|
|
||||||
"symfony/translation": "^3.3",
|
"symfony/translation": "^3.3",
|
||||||
"symfony/yaml": "^3.3",
|
"symfony/yaml": "^3.3",
|
||||||
"tobscure/json-api": "^0.3.0",
|
"tobscure/json-api": "^0.3.0",
|
||||||
|
|
|
@ -400,4 +400,16 @@ class Gate implements GateContract
|
||||||
{
|
{
|
||||||
// TODO: Implement abilities() method.
|
// TODO: Implement abilities() method.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the raw result from the authorization callback.
|
||||||
|
*
|
||||||
|
* @param string $ability
|
||||||
|
* @param array|mixed $arguments
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function raw($ability, $arguments = [])
|
||||||
|
{
|
||||||
|
// TODO: Implement raw() method.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user