init
parents
Showing
.env.example
0 → 100644
.gitignore
0 → 100644
app/Console/Commands/.gitkeep
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Middleware/ExampleMiddleware.php
0 → 100644
app/Http/routes.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/Providers/AppServiceProvider.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": { | ||
"laravel/lumen-framework": "5.0.*", | ||
"vlucas/phpdotenv": "~1.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/" | ||
}, | ||
"classmap": [ | ||
"database/" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"tests/" | ||
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
} | ||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
database/migrations/.gitkeep
0 → 100644
database/seeds/DatabaseSeeder.php
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
readme.md
0 → 100644
resources/lang/en/validation.php
0 → 100644
resources/views/.gitkeep
0 → 100644
server.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/framework/cache/.gitignore
0 → 100644
storage/framework/sessions/.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