Remove dependency on illuminate\html
This commit is contained in:
parent
cdf4ab0279
commit
0762e5cf53
|
|
@ -29,8 +29,7 @@
|
|||
"october/system": "~1.0",
|
||||
"october/backend": "~1.0",
|
||||
"october/cms": "~1.0",
|
||||
"laravel/framework": "5.1.*",
|
||||
"illuminate/html": "5.0.*"
|
||||
"laravel/framework": "5.1.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.0",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php namespace Backend\Widgets;
|
||||
|
||||
use Db;
|
||||
use HTML as Html;
|
||||
use Html;
|
||||
use App;
|
||||
use Lang;
|
||||
use Input;
|
||||
|
|
|
|||
|
|
@ -34,9 +34,6 @@ return [
|
|||
'URL' => 'Illuminate\Support\Facades\URL',
|
||||
'Validator' => 'Illuminate\Support\Facades\Validator',
|
||||
'View' => 'Illuminate\Support\Facades\View',
|
||||
'Form' => 'Illuminate\Html\FormFacade',
|
||||
'Html' => 'Illuminate\Html\HtmlFacade', // Preferred
|
||||
'HTML' => 'Illuminate\Html\HtmlFacade',
|
||||
|
||||
/*
|
||||
* October aliases
|
||||
|
|
@ -47,6 +44,8 @@ return [
|
|||
'Config' => 'October\Rain\Support\Facades\Config',
|
||||
'Seeder' => 'October\Rain\Database\Updates\Seeder',
|
||||
'Flash' => 'October\Rain\Support\Facades\Flash',
|
||||
'Form' => 'October\Rain\Support\Facades\Form',
|
||||
'Html' => 'October\Rain\Support\Facades\Html',
|
||||
'Http' => 'October\Rain\Support\Facades\Http',
|
||||
'Str' => 'October\Rain\Support\Facades\Str',
|
||||
'Markdown' => 'October\Rain\Support\Facades\Markdown',
|
||||
|
|
|
|||
Loading…
Reference in New Issue