phpspec and laravel setup
问题 I am setting up a new Laravel project and integrating PHPSpec. I am having trouble finding a good working example of the phpspec.yml file that would work neatly with Laravel. In a similar way to RSpec in Rails. My desired folder structure would be as follows spec/ models/ controllers/ app/ models/ controllers/ My phpspec.yml currently looks like this: suites: controller_suite: namespace: Controller spec_path: 'spec/controllers' src_path: 'app/controllers' model_suite: namespace: Model spec