Skip to content

Commit

Permalink
Merge pull request #3 from nopenopenope/remove-dev-versioning
Browse files Browse the repository at this point in the history
Remove Dev versioning.
  • Loading branch information
bytes-commerce committed Aug 11, 2023
2 parents f72832c + fc61b13 commit 21ca195
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
env:
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}

- name: "Cache dependencies"
uses: "actions/cache@v2"
with:
path: |
~/.composer/cache
magento
key: "magento-2.4.6-with-php-${{ matrix.php-version }}"
# - name: "Cache dependencies"
# uses: "actions/cache@v2"
# with:
# path: |
# ~/.composer/cache
# magento
# key: "magento-2.4.6-with-php-${{ matrix.php-version }}"

- name: "Create Magento 2.4.6 project"
run: |
Expand All @@ -77,6 +77,7 @@ jobs:

- name: "Add testing dependencies"
run: |
composer config minimum-stability dev
composer config --no-plugins allow-plugins.magento/* true
composer config --no-plugins allow-plugins.php-http/discovery true
composer config --no-plugins allow-plugins.laminas/laminas-dependency-plugin true
Expand All @@ -94,7 +95,6 @@ jobs:
run: |
rm -f app/etc/env.php
mkdir -p pub/static pub/media
composer require --dev behat/behat tkotosz/test-area-magento2
bin/magento setup:install \
--admin-email="magento@magento.com" \
--admin-firstname="admin" \
Expand Down Expand Up @@ -123,8 +123,7 @@ jobs:

- name: "Install BehatMagento2 Extension"
run: |
composer config minimum-stability dev
composer config repositories.behat-m2-extension path vendor/seec/behat-magento2-extension
composer config repositories.behat-magento2-extension path vendor/seec/behat-magento2-extension
composer require seec/behat-magento2-extension:@dev
working-directory: 'magento'

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"role": "Developer"
}
],
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
Expand All @@ -34,7 +34,7 @@
"magento/module-backend": "*",
"friends-of-behat/page-object-extension": "^0.3.2",
"friends-of-behat/suite-settings-extension": "^1.1",
"seec/behat-test-runner": "dev-master",
"seec/behat-test-runner": "^8",
"friends-of-behat/symfony-extension": "^2.0",
"react/promise": "~2.0"
},
Expand All @@ -48,7 +48,7 @@
"symplify/easy-coding-standard": "^11.3",
"symplify/config-transformer": "^12.0",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-webmozart-assert": "1.2.x-dev"
"phpstan/phpstan-webmozart-assert": "^1"
},
"config": {
"allow-plugins": {
Expand Down

0 comments on commit 21ca195

Please sign in to comment.