Skip to content

Commit

Permalink
Drop support for PHP version 7.4. Since mod_adleradaptivity already r…
Browse files Browse the repository at this point in the history
…equired php 8.0 the previous version wasn't actually supported by the AdLer project since using the adaptivity module. Only 8.1 is now supported.
  • Loading branch information
Glutamat42 committed Nov 27, 2023
1 parent 72a3a38 commit 0a70d39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.1']
php: ['8.1']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE']
database: [pgsql, mariadb]
exclude:
- php: '7.4' # incompatible moodle <-> php combination
moodle-branch: 'MOODLE_402_STABLE'

steps:
- name: Check out repository code
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Folgende Versionen werden unterstützt (mit mariadb und postresql getestet):

| Moodle Branch | PHP Version |
|-------------------------|-------------|
| MOODLE_401_STABLE (LTS) | 7.4 |
| MOODLE_401_STABLE (LTS) | 8.1 |
| MOODLE_402_STABLE | 8.1 |

Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2023111200;
$plugin->version = 2023112701;
$plugin->requires = 2022112800; // Moodle version
$plugin->component = 'local_adler';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '2.0.0';
$plugin->maturity = MATURITY_ALPHA;
$plugin->release = '3.0.0-dev';
$plugin->dependencies = array(
'availability_adler' => '2.0.0',
);

0 comments on commit 0a70d39

Please sign in to comment.