mirror of https://github.com/flarum/flarum
Update dependencies, use Studio for managing core subdirectory.
parent
91050da115
commit
0d5f949297
|
@ -16,8 +16,6 @@ define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
require __DIR__.'/../vendor/autoload.php';
|
require __DIR__.'/../vendor/autoload.php';
|
||||||
|
|
||||||
require __DIR__.'/../flarum/core/vendor/autoload.php';
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Include The Compiled Class File
|
| Include The Compiled Class File
|
||||||
|
@ -29,7 +27,7 @@ require __DIR__.'/../flarum/core/vendor/autoload.php';
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$compiledPath = __DIR__.'/../storage/framework/compiled.php';
|
$compiledPath = __DIR__.'/../vendor/compiled.php';
|
||||||
|
|
||||||
if (file_exists($compiledPath))
|
if (file_exists($compiledPath))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"require": {
|
"require": {
|
||||||
"laravel/framework": "5.0.*"
|
"laravel/framework": "5.0.*"
|
||||||
},
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"franzl/studio": "1.0.x@dev"
|
||||||
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"App\\": "app/"
|
"App\\": "app/"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"packages": {
|
||||||
|
"flarum/core": "core"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue