Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 993 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 993 Bytes

CONTRIBUTING

Contributions are welcome and be fully credited <3

Before submitting any pull request please make sure that the coding standards are respected and that all the specification tests are passing.

Coding Standard

This library will use the Symfony2 Coding Standard.

These conventions are enforced using the PHP-CS-Fixer tool. PHP-CS-Fixer is installed as a dev dependency and will therefore be available after running composer install or composer update.

$ cd /path/to/DigitalOceanV2
$ ./vendor/bin/php-cs-fixer fix

Specification tests

Install PHPSpec globally with composer and run it in the project.

$ composer global require phpspec/phpspec:@stable
$ phpspec run -fpretty

Happy coding !