dev-master
9999999-devCreate an application structure from a single config file, with a basic phpspec classes
MIT
The Requires
The Development Requires
by Vsevolod Dolgopolov
extension phpspec
Wallogit.com
2017 © Pedro Peláez
Create an application structure from a single config file, with a basic phpspec classes
first of all extend your phpspec.yml with the reference to this extension:, (*1)
extensions:
- Zavalit\FileTree\Extension\PhpSpecExtension
create a phpspec.filetree.yml config file with class names that you want to be created and put it in a place where you run your phpspec commmand., (*2)
phpspec.filetree.yml can look smth like this:, (*3)
filetree:
- Zavalit:
- Model:
- Cart
- Product
- User
- Business:
- Checkout
- Shippment
- Listeneres:
- StornoListener
- BayListener
and run, (*4)
$ phpspec filetree
after that you should have 7 Classes created in a psr-0 conform way: - Zavalit\Model\Cart - Zavalit\Model\Product - Zavalit\Model\User - Zavalit\Business\Checkout - Zavalit\Business\Shippment - Zavalit\Business\Listeneres\StornoListener - Zavalit\Business\Listeneres\BayListener, (*5)
and also relevant 7 Spec Classes., (*6)
Create an application structure from a single config file, with a basic phpspec classes
MIT
extension phpspec