Tag: php laravel 5

如何安装Laravel 5.0

我无法使Laravel 5.0的testing实例正常运行,所以我可以协助完成这个过渡。 1)从https://github.com/laravel/laravel/tree/develop创build一个新的应用程序导致运行composer install时出现以下错误。 {"error": {"type":"ErrorException", "message":"Undefined index: timezone", "file":"\/Projects\/indatus\/dispatcher-test-app\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/start.php", "line":167} } {"error": {"type":"ErrorException", "message":"Undefined index: timezone", "file":"\/Projects\/indatus\/dispatcher-test-app\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/start.php", "line":167}} 我完全错过了什么? 更新:这个问题只有在Laravel 5处于开发阶段才有意义。 现在您应该参考Laravel文档来了解如何安装Laravel

Laravel 5 – 手工种子类SongsTableSeeder不存在

当我运行php artisan db:seed时出现以下错误: [ReflectionException] Class SongsTableSeeder does not exist 到底是怎么回事? 我的DatabaseSeeder类: <?php use Illuminate\Database\Seeder; use Illuminate\Database\Eloquent\Model; class DatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Model::unguard(); $this->call('SongsTableSeeder'); } } 我的SongsTableSeeder类: <?php // Composer: "fzaninotto/faker": "v1.4.0" use Faker\Factory as Faker; use Illuminate\Database\Seeder; use DB; class […]