diff --git a/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/app/config/config_dev.yml b/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/app/config/config_dev.yml new file mode 100644 index 000000000..81e0f80f4 --- /dev/null +++ b/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/app/config/config_dev.yml @@ -0,0 +1,7 @@ +imports: + - { resource: config.yml } #here we import a config.yml file, this is not required + +framework: + test: ~ + session: + storage_id: session.storage.filesystem \ No newline at end of file diff --git a/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/web/app_dev.php b/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/web/app_dev.php new file mode 100644 index 000000000..e0279c2ae --- /dev/null +++ b/src/Chill/CustomFieldsBundle/Tests/Fixtures/App/web/app_dev.php @@ -0,0 +1,30 @@ +loadClassCache(); +$request = Request::createFromGlobals(); +$response = $kernel->handle($request); +$response->send(); +$kernel->terminate($request, $response); diff --git a/src/Chill/CustomFieldsBundle/console.sh b/src/Chill/CustomFieldsBundle/console.sh new file mode 100755 index 000000000..f91fa405c --- /dev/null +++ b/src/Chill/CustomFieldsBundle/console.sh @@ -0,0 +1 @@ +php Tests/Fixtures/App/app/console.php diff --git a/src/Chill/CustomFieldsBundle/run-server.sh b/src/Chill/CustomFieldsBundle/run-server.sh new file mode 100755 index 000000000..e12b22a86 --- /dev/null +++ b/src/Chill/CustomFieldsBundle/run-server.sh @@ -0,0 +1 @@ +php Tests/Fixtures/App/app/console.php server:run --docroot=Tests/Fixtures/App/web/