Skip to content

Commit

Permalink
Fix composer develop install issue (#657)
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 5d8065c commit 2c5a8d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"homepage": "https://mvorisek.cz/"
}
],
"version": "dev-develop",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
Expand All @@ -46,8 +47,8 @@
"require-release": {
"php": ">=7.3.0",
"ext-intl": "*",
"atk4/core": "^2.0",
"atk4/dsql": "^2.0"
"atk4/core": "^2.2.0",
"atk4/dsql": "^2.2.0"
},
"require-dev": {
"atk4/schema": "dev-develop",
Expand All @@ -56,7 +57,7 @@
"phpunit/phpunit": ">=9.0"
},
"require-dev-release": {
"atk4/schema": "^2.0",
"atk4/schema": "^2.2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpcov": "*",
"phpunit/phpunit": ">=9.0"
Expand Down

0 comments on commit 2c5a8d8

Please sign in to comment.