summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..cbd8ede
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,33 @@
+{
+ "name": "grasmash/yaml-expander",
+ "description": "Expands internal property references in a yaml file.",
+ "type": "library",
+ "require": {
+ "php": ">=5.4",
+ "symfony/yaml": "^2.8.11|^3",
+ "dflydev/dot-access-data": "^1.1.0"
+ },
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Matthew Grasmick"
+ }
+ ],
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "autoload": {
+ "psr-4": {
+ "Grasmash\\YamlExpander\\": "src/"
+ }
+ },
+ "require-dev": {
+ "squizlabs/php_codesniffer": "^2.7",
+ "phpunit/phpunit": "^4.8|^5.5.4",
+ "satooshi/php-coveralls": "^1.0"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ }
+}