init
parents
Showing
with
837 additions
and
0 deletions
.env.example
0 → 100644
.gitignore
0 → 100644
app/Entrance/Application.php
0 → 100644
app/Entrance/Console/Commands/.gitkeep
0 → 100644
File mode changed
app/Entrance/Console/Kernel.php
0 → 100644
app/Entrance/Events/Event.php
0 → 100644
app/Entrance/Events/ExampleEvent.php
0 → 100644
app/Entrance/Exceptions/Handler.php
0 → 100644
app/Entrance/Http/Controllers/Controller.php
0 → 100644
app/Entrance/Jobs/ExampleJob.php
0 → 100644
app/Entrance/Jobs/Job.php
0 → 100644
app/Entrance/Listeners/ExampleListener.php
0 → 100644
app/Entrance/User.php
0 → 100644
app/Entrance/routes.php
0 → 100644
app/Order/Controllers/Controller.php
0 → 100644
app/Order/OrderServiceProvider.php
0 → 100644
app/Order/routes.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "laravel/lumen", | |||
| "description": "The Laravel Lumen Framework.", | |||
| "keywords": ["framework", "laravel", "lumen"], | |||
| "license": "MIT", | |||
| "type": "project", | |||
| "require": { | |||
| "php": ">=5.6.4", | |||
| "laravel/lumen-framework": "5.5.*", | |||
| "vlucas/phpdotenv": "~2.2" | |||
| }, | |||
| "require-dev": { | |||
| "fzaninotto/faker": "~1.4", | |||
| "phpunit/phpunit": "~6.0", | |||
| "mockery/mockery": "~0.9" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "App\\": "app/", | |||
| "Entrance\\": "app/Entrance", | |||
| "Order\\": "app/Order" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "classmap": [ | |||
| "tests/", | |||
| "database/" | |||
| ] | |||
| }, | |||
| "scripts": { | |||
| "post-root-package-install": [ | |||
| "php -r \"copy('.env.example', '.env');\"" | |||
| ] | |||
| }, | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true, | |||
| "optimize-autoloader": true | |||
| } |
composer.lock
0 → 100644
This diff could not be displayed because it is too large.
database/factories/ModelFactory.php
0 → 100644
database/migrations/.gitkeep
0 → 100644
File mode changed
database/seeds/DatabaseSeeder.php
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
readme.md
0 → 100644
resources/views/.gitkeep
0 → 100644
File mode changed
storage/app/.gitignore
0 → 100644
storage/framework/cache/.gitignore
0 → 100644
storage/framework/views/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/ExampleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
Please
register
or
sign in
to comment