initial commit
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitignore
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Events/Event.php
0 → 100644
app/Events/ExampleEvent.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Jobs/ExampleJob.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/User.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": ">=7.1.3", | |||
"guzzlehttp/guzzle": "~6.0", | |||
"laravel/lumen-framework": "5.8.*", | |||
"vlucas/phpdotenv": "^3.3" | |||
}, | |||
"require-dev": { | |||
"fzaninotto/faker": "^1.4", | |||
"phpunit/phpunit": "^7.0", | |||
"mockery/mockery": "^1.0" | |||
}, | |||
"autoload": { | |||
"classmap": [ | |||
"database/seeds", | |||
"database/factories" | |||
], | |||
"psr-4": { | |||
"App\\": "app/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"classmap": [ | |||
"tests/" | |||
] | |||
}, | |||
"scripts": { | |||
"post-root-package-install": [ | |||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
] | |||
}, | |||
"config": { | |||
"preferred-install": "dist", | |||
"sort-packages": true, | |||
"optimize-autoloader": true | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true | |||
} |
composer.lock
0 → 100644
This diff is collapsed.
database/migrations/.gitkeep
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
resources/views/.gitkeep
0 → 100644
routes/web.php
0 → 100644
storage/app/.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