Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

CONTRIBUTING.md

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 1.06 KiB


01  # Contributing
02   
03   * Coding standard for the project is [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
04   * The project will follow strict [object calisthenics](http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php)
05   * Any contribution must provide tests for additional introduced conditions
06   * Any un-confirmed issue needs a failing test case before being accepted
07   * Pull requests must be sent from a new hotfix/feature branch, not from `master`.
08   
09  ## Installation
10   
11  To install the project and run the tests, you need to clone it first:
12   
13  ```sh
14  $ git clone git://github.com/Ocramius/ProxyManager.git
15  ```
16   
17  You will then need to run a composer installation:
18   
19  ```sh
20  $ cd ProxyManager
21  $ curl -s https://getcomposer.org/installer | php
22  $ php composer.phar update
23  ```
24   
25  ## Testing
26   
27  The PHPUnit version to be used is the one installed as a dev- dependency via composer:
28   
29  ```sh
30  $ ./vendor/bin/phpunit
31  ```
32   
33  Accepted coverage for new contributions is 80%. Any contribution not satisfying this requirement 
34  won't be merged.
35   
36