symfonyでのCRUDアプリ習作
下記を参考にさせていただきました。(ありがとうございました)
https://php-archive.net/php/symfony-4-crud/
- CentOS Linux release 7.4.1708 (Core)
- PHP 7.1.21
- symfony/skeleton (v4.2.2.1)
上のコマンドだとエラーになったので、下のコマンドを実行する
# composer require doctrine maker
[UnexpectedValueException]
Could not parse version constraint maker: Invalid version string "maker"
# composer require symfony/orm-pack
# composer require symfony/maker-bundle --dev
また、makeコマンドでエラーになったのでmakerを一度削除し再インストールしました。
# php bin/console make:entity Post
2019-01-13T05:14:18+00:00 [error] Error thrown while running command "'make:entity' Post". Message: "There are no commands defined in the "make" namespace."
# composer remove maker
# composer require maker --dev
/public直下に、.htaccessを追加する。(httpd.conf等webサーバへ設定行う場合は不要)
[https://gist.github.com/Guibzs/a3e0b3ea4eb00c246cda66994defd8a4:title]