From 2b8311f71147c91761a60db217dc0c39a52547f3 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Sun, 28 Sep 2014 20:32:28 +0200 Subject: [PATCH] Add PHPSpec config file and dependency --- composer.json | 3 ++- phpspec.yml | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 phpspec.yml diff --git a/composer.json b/composer.json index 34def2f7..82da4049 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,8 @@ "laravel/framework": "~5.0" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "~4.0", + "phpspec/phpspec": "~2.1" }, "autoload": { "classmap": [ diff --git a/phpspec.yml b/phpspec.yml new file mode 100644 index 00000000..eb57939e --- /dev/null +++ b/phpspec.yml @@ -0,0 +1,5 @@ +suites: + main: + namespace: App + psr4_prefix: App + src_path: app \ No newline at end of file