the first commit
parents
Showing
.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/Models/Base.php
0 → 100644
app/Models/Tag.php
0 → 100644
app/Models/Video.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100755
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", | ||
"laravel/lumen-framework": "5.6.*", | ||
"vlucas/phpdotenv": "~2.2" | ||
}, | ||
"require-dev": { | ||
"fzaninotto/faker": "~1.4", | ||
"phpunit/phpunit": "~7.0", | ||
"mockery/mockery": "~1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"tests/", | ||
"database/" | ||
] | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"php -r \"copy('.env.example', '.env');\"" | ||
] | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"optimize-autoloader": true | ||
} | ||
} |
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
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
readme.md
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