dev-master
9999999-dev
The Requires
Wallogit.com
2017 © Pedro Peláez
This package will create a development structure and install all tools necessarry for easy development, (*1)
During installation this package will create a complete folderstructure so that you can start coding right away., (*2)
The structure contains the following:, (*3)
mkdir MyNewProjectFolder ```` ### Move into your newly created project folder ```bash cd MyNewProjectFolder ```` ### Create a ```composer.json```-file in your newly created project-folder Either install it by cloning the example-file into your project-folder ```bash curl -o composer.json https://raw.github.com/heiglandreas/devstructure/master/example.composer.json # OR wget https://raw.github.com/heiglandreas/devstructure/master/example.composer.json > composer.json
Or you create the file with your favourite text-editor. Insert at least the following content, (*4)
{
"require-dev" : {
"org_heigl/devpackages" : "dev-master"
},
"minimum-stability": "dev",
"config" : {
"bin-dir" : "bin"
}
}
You can use the file example.composer.json as template., (*5)
composer
```bash curl -sS https://getcomposer.org/installer | php, (*6)
### Run composer ```bash php composer.phar install
Including all of the above tools including cool phing tasks that make your live easier, (*7)