forked from lxerxa/actionview
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding bootstrap/paths.php to allow specification of custom paths for…
… sections of Laravel. Signed-off-by: Ben Corlett <bencorlett@me.com>
- Loading branch information
1 parent
8a5f18e
commit 24e158e
Showing
4 changed files
with
56 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application Path | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Here we just defined the path to the application directory. Most likely | ||
| you will never need to change this value as the default setup should | ||
| work perfectly fine for the vast majority of all our applications. | ||
| | ||
*/ | ||
|
||
'app' => __DIR__.'/../app', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Public Path | ||
|-------------------------------------------------------------------------- | ||
| | ||
| We understand that not all hosting environments allow flexibility with | ||
| public paths. That's why we allow you to change where your public path | ||
| is below. | ||
| | ||
*/ | ||
|
||
'public' => __DIR__.'/../public', | ||
|
||
/* | ||
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | ||
| Base Path | ||
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | ||
| | ||
| You probably shouldn't be editing this. | ||
| | ||
*/ | ||
|
||
'base' => __DIR__.'/..', | ||
|
||
); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ | |
] | ||
}, | ||
"minimum-stability": "dev" | ||
} | ||
} |
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