Skip to content

Commit 3df46a7

Browse files
authored
Add support for 10.5 and 11.1 (#36)
1 parent 29c94ce commit 3df46a7

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
drupal_version: ['10.2', '10.3', '10.4', '11.0', '11.x']
20+
drupal_version: ['10.3', '10.4', '10.5', '11.0', '11.1', '11.x']
2121

2222
steps:
2323
- name: Create project

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,18 @@ switch:
7777
$(GIT_SWITCH) 10.4.x
7878
make clean
7979

80+
10.5: php8.3
81+
$(GIT_SWITCH) 10.5.x
82+
make clean
83+
8084
11.0: php8.3
8185
$(GIT_SWITCH) 11.0.x
8286
make clean
8387

88+
11.1: php8.3
89+
$(GIT_SWITCH) 11.1.x
90+
make clean
91+
8492
11.x: php8.3
8593
$(GIT_SWITCH) 11.x
8694
make clean

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Make commands should be executed on the host machine.
5151
* `umami` - installs Drupal with the demo_umami profile
5252
* `login` - gets a one-time login link
5353
* `switch` - switches branch, e.g. `make BRANCH=9.3 switch`
54-
* `10.2|10.3|10.4|11.0|11.x` - provides a clean environment with the specified Drupal version
54+
* `10.2|10.3|10.4|10.5|11.0|11.1|11.x` - provides a clean environment with the specified Drupal version
5555
* `php8.1|php8.2|php8.3` - starts the stack with the specified php version
5656

5757
## PhpStorm configuration

0 commit comments

Comments
 (0)