Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit 5973083

Browse files
committed
extract foundation into a separate package
1 parent 1d44eb5 commit 5973083

18 files changed

+5
-396
lines changed

TODO.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"authors": [],
88
"require": {
99
"php": ">=5.5.9",
10-
"laravel/framework": "5.1.*"
10+
"laravel/framework": "5.1.*",
11+
"lucid-arch/laravel-foundation": "5.1.*"
1112
},
1213
"require-dev": {
1314
"fzaninotto/faker": "~1.4",

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
Framework\Providers\EventServiceProvider::class,
146146
Framework\Providers\RouteServiceProvider::class,
147147

148-
App\Foundation\Providers\ServiceProvider::class,
148+
App\Foundation\ServiceProvider::class,
149149
Lucid\Console\LucidServiceProvider::class,
150150
],
151151

src/Domains/Http/Jobs/RespondWithJsonErrorJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Trellis\Domains\Http\Jobs;
3+
namespace App\Domains\Http\Jobs;
44

55
use Illuminate\Routing\ResponseFactory;
66

src/Domains/Http/Jobs/RespondWithJsonJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Domains\Http\Jobs;
44

5-
use App\Foundation\Job;
5+
use Lucid\Foundation\Job;
66
use Illuminate\Routing\ResponseFactory;
77

88
class RespondWithJsonJob extends Job

src/Foundation/Feature.php

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/Foundation/Http/Controller.php

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/Foundation/InvalidInputException.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/Foundation/Job.php

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/Foundation/Model.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)