Skip to content

Instantly share code, notes, and snippets.

@rdok-pigogo
Created September 16, 2016 10:12
Show Gist options
  • Save rdok-pigogo/3d975c6395be6f52b300dee5bdcf7b4d to your computer and use it in GitHub Desktop.
Save rdok-pigogo/3d975c6395be6f52b300dee5bdcf7b4d to your computer and use it in GitHub Desktop.
phpSpec autloader
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