Browse Source

Merge pull request #3046 from driesvints/feature/phpspec-config-file

Add PHPSpec config file and dependency
Taylor Otwell 9 years ago
parent
commit
e2b7f92abe
2 changed files with 7 additions and 1 deletions
  1. 2 1
      composer.json
  2. 5 0
      phpspec.yml

+ 2 - 1
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": [

+ 5 - 0
phpspec.yml

@@ -0,0 +1,5 @@
+suites:
+    main:
+        namespace: App
+        psr4_prefix: App
+        src_path: app