Adding new l5 version
Showing
app/Commands/Command.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Events/Event.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Handlers/Events/.gitkeep
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/routes.php
0 → 100644
app/Services/Registrar.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/autoload.php
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "laravel/laravel", | ||
"description": "The Laravel Framework.", | ||
"keywords": ["framework", "laravel"], | ||
"license": "MIT", | ||
"type": "project", | ||
"require": { | ||
"laravel/framework": "5.0.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.0", | ||
"phpspec/phpspec": "~2.1" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
"database" | ||
], | ||
"psr-4": { | ||
"App\\": "app/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"tests/TestCase.php" | ||
] | ||
}, | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"php artisan clear-compiled", | ||
"php artisan optimize" | ||
], | ||
"post-update-cmd": [ | ||
"php artisan clear-compiled", | ||
"php artisan optimize" | ||
], | ||
"post-create-project-cmd": [ | ||
"php -r \"copy('.env.example', '.env');\"", | ||
"php artisan key:generate" | ||
] | ||
}, | ||
"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.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/cache.php
0 → 100644
config/compile.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/migrations/.gitkeep
0 → 100644
database/seeds/.gitkeep
0 → 100644
gulpfile.js
0 → 100644
package.json
0 → 100644
{ | ||
"devDependencies": { | ||
"gulp": "^3.8.8", | ||
"laravel-elixir": "*" | ||
} | ||
} |
phpspec.yml
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/css/app.css
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
public/favicon.ico
0 → 100644
public/index.php
0 → 100644
public/robots.txt
0 → 100644
readme.md
0 → 100644
server.php
0 → 100644
storage/.gitignore
0 → 100644
storage/app/.gitignore
0 → 100644
storage/framework/.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