Skip to content

Commit

Permalink
Relax constraints to allow 2.4.1 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
convenient authored Oct 25, 2022
1 parent 3837f53 commit cd254b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ git:
dist: xenial
env:
- TEST_GROUP=magento_latest
- TEST_GROUP=magento_242
- TEST_GROUP=magento_241
jobs:
exclude:
- php: 8.1
env: TEST_GROUP=magento_242
env: TEST_GROUP=magento_241
- php: 7.4
env: TEST_GROUP=magento_latest

Expand Down Expand Up @@ -41,7 +41,8 @@ script:
- composer run test-static-analysis
- composer run test:unit
# Install magento
- if [[ $TEST_GROUP = magento_242 ]]; then NAME=ampmodule FULL_INSTALL=0 VERSION=2.4.2 . ./vendor/bin/travis-install-magento.sh; fi
- if [[ $TEST_GROUP = magento_241 ]]; then composer self-update --1; fi
- if [[ $TEST_GROUP = magento_241 ]]; then NAME=ampmodule FULL_INSTALL=0 VERSION=2.4.1 . ./vendor/bin/travis-install-magento.sh; fi
- if [[ $TEST_GROUP = magento_latest ]]; then NAME=ampmodule FULL_INSTALL=0 . ./vendor/bin/travis-install-magento.sh; fi
# Install this module
- cd vendor/ampersand/travis-vanilla-magento/instances/ampmodule
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ This means you can get verbose information when you are debugging something on p

It is recommended that you also install [ampersand/magento2-log-correlation-id](https://github.com/AmpersandHQ/magento2-log-correlation-id/) to help correlate your log entries together.

Compatible with Magento 2.4.1 and higher.

## Features

- Database query (and stack trace) logging will be enabled and output to `./var/log/verbose_db.log`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prefer-stable": true,
"require": {
"php": "^7.4||^8.1",
"magento/framework": ">=103.0.2",
"magento/framework": ">=103.0.1",
"magento/magento-composer-installer": "*",
"magento/module-developer": "*"
},
Expand Down

0 comments on commit cd254b2

Please sign in to comment.