Skip to content

Commit

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

* Update bundler.yml
  • Loading branch information
DarkSide666 authored Jul 15, 2020
1 parent badbfb9 commit f0eb6ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,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
- name: Compile JS files for CDN
run: |
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
],
"homepage": "https://github.com/atk4/ui",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{"name": "Romans Malinovskis", "email": "[email protected]", "homepage": "https://nearly.guru/" },
{"name": "Alain Belair", "homepage": "https://agiletoolkit.org/"},
Expand All @@ -29,6 +27,9 @@
{"name": "Alex Cicovic", "homepage": "https://alexcicovic.com/"},
{"name": "Georgi Hristov", "homepage": "https://xsystems.io/"}
],
"version": "dev-develop",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
Expand All @@ -41,8 +42,8 @@
"require-release": {
"php": ">=7.3.0",
"ext-json": "*",
"atk4/core": "^2.0",
"atk4/data": "^2.0"
"atk4/core": "^2.2.0",
"atk4/data": "^2.2.0"
},
"require-dev": {
"behat/behat": "^3.4",
Expand Down

0 comments on commit f0eb6ce

Please sign in to comment.