2017 © Pedro Peláez
 

library phpspec-filetree

Create an application structure from a single config file, with a basic phpspec classes

image

zavalit/phpspec-filetree

Create an application structure from a single config file, with a basic phpspec classes

  • Monday, July 20, 2015
  • by zavalit
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PhpSpec FileTree Extension

how to

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)

The Versions

20/07 2015

dev-master

9999999-dev

Create an application structure from a single config file, with a basic phpspec classes

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vsevolod Dolgopolov

extension phpspec