-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2081 from LuckyCyborg/4.0
Implementation of the Assets Service
- Loading branch information
Showing
22 changed files
with
80 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
<?php | ||
/** | ||
* Application Configuration | ||
* | ||
* @author David Carr - [email protected] | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
@@ -81,7 +74,7 @@ | |
*/ | ||
'middleware' => array( | ||
'Nova\Foundation\Http\Middleware\CheckForMaintenanceMode', | ||
'Nova\Routing\Middleware\DispatchAssetFiles', | ||
'Nova\Assets\Middleware\DispatchAssetFiles', | ||
), | ||
|
||
/** | ||
|
@@ -119,6 +112,7 @@ | |
'Nova\Auth\AuthServiceProvider', | ||
'Nova\Bus\BusServiceProvider', | ||
'Nova\Cache\CacheServiceProvider', | ||
'Nova\Assets\AssetServiceProvider', | ||
'Nova\Routing\RoutingServiceProvider', | ||
'Nova\Cookie\CookieServiceProvider', | ||
'Nova\Packages\PackageServiceProvider', | ||
|
@@ -177,14 +171,14 @@ | |
'aliases' => array( | ||
// The Support Classes. | ||
'Arr' => 'Nova\Support\Arr', | ||
'Assets' => 'Nova\Support\Assets', | ||
'Str' => 'Nova\Support\Str', | ||
|
||
// The Database Seeder. | ||
'Seeder' => 'Nova\Database\Seeder', | ||
|
||
// The Support Facades. | ||
'App' => 'Nova\Support\Facades\App', | ||
'Asset' => 'Nova\Support\Facades\Asset', | ||
'Auth' => 'Nova\Support\Facades\Auth', | ||
'Broadcast' => 'Nova\Support\Facades\Broadcast', | ||
'Bus' => 'Nova\Support\Facades\Bus', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Auth configuration | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?php | ||
|
||
|
||
return array( | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Cache configuration | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
<?php | ||
/** | ||
* Database configuration | ||
* | ||
* @author David Carr - [email protected] | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?php | ||
|
||
|
||
return array( | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* FileField configuration | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
<?php | ||
/** | ||
* All known Languages | ||
* | ||
* @author David Carr - [email protected] | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Mailer Configuration | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?php | ||
|
||
|
||
return array( | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Profiler | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
<?php | ||
/** | ||
* Queue Configuration. | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 4.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* ReCaptcha | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Routing - the Routing Configuration. | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
<?php | ||
/** | ||
* Session Configuration. | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 3.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?php | ||
|
||
|
||
return array( | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
<?php | ||
/** | ||
* View Configuration. | ||
* | ||
* @author Virgil-Adrian Teaca - [email protected] | ||
* @version 4.0 | ||
*/ | ||
|
||
|
||
return array( | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.