forked from composer/installers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request composer#338 from composer/contribution
Meta documents
- Loading branch information
Showing
3 changed files
with
77 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Change Log | ||
|
||
## [Unreleased] | ||
|
||
## v1.2.0 - 2016-08-13 | ||
### Added | ||
* Installer for Attogram. | ||
* Installer for Cockpit. | ||
* Installer for Plentymarkets. | ||
* Installer for ReIndex. | ||
* Installer for Vanilla. | ||
* Installer for YAWIK. | ||
* Added missing environments for new Shopware (5.2) Plugin System. | ||
|
||
## v1.1.0 - 2016-07-05 | ||
### Added | ||
* Installer for ReIndex. | ||
* Installer for RadPHP. | ||
* Installer for Decibel. | ||
* Installer for Phifty. | ||
* Installer for ExpressionEngine. | ||
|
||
### Changed | ||
* New paths for new Bitrix CMS. Old paths is deprecated. | ||
|
||
### Deprecated | ||
* Old paths in Bitrix CMS Installer is deprecated. | ||
|
||
## v1.0.25 - 2016-04-13 | ||
### Removed | ||
* Revert TYPO3 installer deletion. | ||
|
||
## v1.0.24 - 2016-04-05 | ||
### Added | ||
* Installer for ImageCMS. | ||
* Installer for Mautic. | ||
* New types in the Kirby installer: `kirby-plugin` and `kirby-field`. | ||
* New types in the Drupal installer: `custom-theme` and `custom-module`. | ||
|
||
### Changed | ||
* Switch to PSR-4. | ||
* Update Bitrix Installer: configuration for setting custom path to directory with kernel. | ||
|
||
### Removed | ||
* Remove TYPO3 Extension installers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Contributing | ||
|
||
If you would like to help, please take a look at the list of | ||
[issues](https://github.com/composer/installers/issues). | ||
|
||
## Pull requests | ||
|
||
* [Fork and clone](https://help.github.com/articles/fork-a-repo). | ||
* Run the command `php composer.phar install` to install the dependencies. | ||
This will also install the dev dependencies. See [Composer](https://getcomposer.org/doc/03-cli.md#install). | ||
* Use the command `phpunit` to run the tests. See [PHPUnit](http://phpunit.de). | ||
* Add information about your changes into `CHANGELOG.md` in section "[Unreleased]". | ||
The format this file is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
* Create a branch, commit, push and send us a | ||
[pull request](https://help.github.com/articles/using-pull-requests). | ||
|
||
To ensure a consistent code base, you should make sure the code follows the | ||
coding standards [PSR-1](http://www.php-fig.org/psr/psr-1/) and | ||
[PSR-2](http://www.php-fig.org/psr/psr-2/). | ||
|
||
### Create a new Installer | ||
|
||
* Create class extends `Composer\Installers\BaseInstaller` with your Installer. | ||
* Create unit tests as a separate class or as part of a `Composer\Installers\Test\InstallerTest`. | ||
* Add information about your Installer in `README.md` in section "Current Supported Package Types". | ||
* Run the tests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters