1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# Contributing
PHP-DI is licensed under the MIT License.
## Set up
* Check out the sources using git or download them
```bash
$ git clone https://github.com/PHP-DI/PHP-DI.git
```
* Install the libraries using composer:
```bash
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install
```
If you are running Windows or are having trouble, read [the official documentation](http://getcomposer.org/doc/00-intro.md#installation).
## Run the tests
The tests are run with [PHPUnit](http://www.phpunit.de/manual/current/en/installation.html):
```bash
$ phpunit
```
## Learning the internals
Read the [How it works](doc/how-it-works.md) documentation.
## What to do?
- Resolve issues: [issue list](https://github.com/PHP-DI/PHP-DI/issues)
- Improve the documentation
- …
## Coding style
The code follows PSR0, PSR1 and [PSR2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md).
Also, do not hesitate to add your name to the author list of a class in the docblock if you improve it.
|