Created
September 16, 2016 10:12
-
-
Save rdok-pigogo/3d975c6395be6f52b300dee5bdcf7b4d to your computer and use it in GitHub Desktop.
phpSpec autloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phpspec.yml | |
``` | |
suites: | |
src_suite: | |
namespace: Src\Text | |
psr4_prefix: Src\Text | |
``` | |
composer.json | |
``` | |
{ | |
"require-dev": { | |
"phpspec/phpspec": "^3.0" | |
}, | |
"autoload": { | |
"psr-4": { | |
"Src\\": "src/" | |
} | |
} | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment