Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
13d7adb3
Commit
13d7adb3
authored
Mar 16, 2013
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for optimize command.
parent
0c0b68e3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
0 deletions
+37
-0
.gitignore
.gitignore
+1
-0
app.php
app/config/app.php
+1
-0
compile.php
app/config/compile.php
+18
-0
autoload.php
bootstrap/autoload.php
+17
-0
No files found.
.gitignore
View file @
13d7adb3
/bootstrap/compiled.php
/vendor
composer.phar
composer.lock
...
...
app/config/app.php
View file @
13d7adb3
...
...
@@ -97,6 +97,7 @@ return array(
'Illuminate\Log\LogServiceProvider'
,
'Illuminate\Mail\MailServiceProvider'
,
'Illuminate\Database\MigrationServiceProvider'
,
'Illuminate\Foundation\Providers\OptimizeServiceProvider'
,
'Illuminate\Pagination\PaginationServiceProvider'
,
'Illuminate\Foundation\Providers\PublisherServiceProvider'
,
'Illuminate\Queue\QueueServiceProvider'
,
...
...
app/config/compile.php
0 → 100644
View file @
13d7adb3
<?php
return
array
(
/*
|--------------------------------------------------------------------------
| Additional Compiled Classes
|--------------------------------------------------------------------------
|
| Here you may specify additional classes to include in the compiled file
| generated by the `artisan optimize` command. These should be classes
| that are included on basically every request into the application.
|
*/
);
\ No newline at end of file
bootstrap/autoload.php
View file @
13d7adb3
...
...
@@ -14,6 +14,23 @@
require
__DIR__
.
'/../vendor/autoload.php'
;
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/
if
(
file_exists
(
$compiled
=
__DIR__
.
'/compiled.php'
))
{
require
$compiled
;
}
/*
|--------------------------------------------------------------------------
| Register The Laravel Auto Loader
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment