Remove dependency on illuminate\html

This commit is contained in:
Samuel Georges 2016-01-02 14:59:59 +11:00
parent cdf4ab0279
commit 0762e5cf53
3 changed files with 4 additions and 6 deletions

View File

@ -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",

View File

@ -1,7 +1,7 @@
<?php namespace Backend\Widgets;
use Db;
use HTML as Html;
use Html;
use App;
use Lang;
use Input;

View File

@ -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',