Skip to content

Commit

Permalink
Merge pull request #15 from grasmash/abstract-expander-logic
Browse files Browse the repository at this point in the history
Abstracting expander logic to grasmash/expander.
  • Loading branch information
grasmash committed Aug 17, 2019
2 parents 07d39a8 + e0fbc0c commit db59cd1
Show file tree
Hide file tree
Showing 10 changed files with 1,141 additions and 603 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -17,8 +17,6 @@ matrix:
env: 'HIGHEST_LOWEST="update"'
- php: 7.0.11
- php: 5.6
- php: 5.5
- php: 5.4
env: 'SCENARIO=symfony2 HIGHEST_LOWEST="update --prefer-lowest'

sudo: false
Expand Down
17 changes: 9 additions & 8 deletions composer.json
Expand Up @@ -3,9 +3,10 @@
"description": "Expands internal property references in a yaml file.",
"type": "library",
"require": {
"php": ">=5.4",
"symfony/yaml": "^2.8.11|^3|^4",
"dflydev/dot-access-data": "^1.1.0"
"php": ">=5.6",
"dflydev/dot-access-data": "^1.1.0",
"grasmash/expander": "^1.0.0",
"symfony/yaml": "^3|^4"
},
"license": "MIT",
"authors": [
Expand All @@ -16,11 +17,11 @@
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Grasmash\\YamlExpander\\": "src/"
"Grasmash\\YamlExpander\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.5.4",
"phpunit/phpunit": "^5.5.4",
"satooshi/php-coveralls": "^1.0.2|dev-master",
"greg-1-anderson/composer-test-scenarios": "^1",
"squizlabs/php_codesniffer": "^2.7"
Expand All @@ -41,19 +42,19 @@
"scenario": "scenarios/install",
"post-update-cmd": [
"create-scenario symfony4 'symfony/console:^4.0'",
"create-scenario symfony2 'symfony/console:^2.8' --platform-php '5.4' --no-lockfile"
"create-scenario symfony2 'symfony/console:^3.0' --platform-php '5.6' --no-lockfile"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.5.9"
"php": "7.1"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
"dev-master": "2.x-dev"
}
}
}

0 comments on commit db59cd1

Please sign in to comment.