初始化
parents
Showing
with
1019 additions
and
0 deletions
.env.example
0 → 100644
.gitignore
0 → 100644
.idea/.gitignore
0 → 100644
.idea/liexin_api_initial.iml
0 → 100644
.idea/misc.xml
0 → 100644
.idea/modules.xml
0 → 100644
.idea/php.xml
0 → 100644
.idea/phpunit.xml
0 → 100644
app/Console/Commands/.gitkeep
0 → 100644
File mode changed
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/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/ExampleController.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/ExampleMiddleware.php
0 → 100644
app/Http/routes.php
0 → 100644
app/Jobs/ExampleJob.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/Listeners/ExampleListener.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.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": ">=5.5.9", | |||
"laravel/lumen-framework": "5.2.*", | |||
"vlucas/phpdotenv": "~2.2" | |||
}, | |||
"require-dev": { | |||
"fzaninotto/faker": "~1.4", | |||
"phpunit/phpunit": "~4.0" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"App\\": "app/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"classmap": [ | |||
"tests/", | |||
"database/" | |||
] | |||
} | |||
} |
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/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