Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Fix composer develop install issue (#228)
Browse files Browse the repository at this point in the history
* composer

* Update bundler.yml
  • Loading branch information
DarkSide666 authored Jul 15, 2020
1 parent 625e13e commit d884f48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
# replaces X keys with X-release keys
jq '. as $in | reduce (keys_unsorted[] | select(endswith("-release")|not)) as $k ({}; . + {($k) : (($k + "-release") as $kr | $in | if has($kr) then .[$kr] else .[$k] end) } )' < composer.json > tmp && mv tmp composer.json
composer config version --unset
v=$(echo ${{ github.ref }} | cut -d / -f 4)
echo "::set-env name=version::$v"
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
{"name": "Imants Horsts", "homepage": "https://darkside.lv/"},
{"name": "Michael Voříšek", "homepage": "https://mvorisek.cz/"}
],
"version": "dev-develop",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
Expand All @@ -24,7 +27,7 @@
},
"require-release": {
"php": ">=7.3.0",
"atk4/core": "^2.0"
"atk4/core": "^2.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
Expand Down

0 comments on commit d884f48

Please sign in to comment.