diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0dc5559 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1] - 2018-03-02 +### Added +- Transform an input array to an output array diff --git a/composer.json b/composer.json index 748dfe7..6f5d00e 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,11 @@ { - "name": "biig-io/optimus", + "name": "biig/optimus", "type": "library", "license": "MIT", "authors": [ { - "name": "Valentin Faugeroux", - "email": "faugerouxvalentin@gmail.com" + "name": "BiiG", + "homepage": "https://www.biig.fr" } ], "autoload": { @@ -20,12 +20,12 @@ }, "require": { "php": "^5.6|>=7.0.8", - "symfony/property-access": "^3.4", + "symfony/property-access": "^3.4" }, "require-dev": { "phpunit/phpunit": "^5.7" }, "suggest": { - "symfony/yaml": "^3.4" + "symfony/yaml": "To parse your YAML files" } }