Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions builders/phpmyadmin.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ const semver = require('semver');
module.exports = {
name: 'phpmyadmin',
config: {
version: '5.1',
supported: ['5.1', '5.0', '4.9', '4.8', '4.7', '4.6'],
version: '5.2',
supported: ['5.2', '5.1', '5.0', '4.9', '4.8', '4.7', '4.6'],
legacy: ['4.9', '4.8', '4.7', '4.6'],
pinPairs: {
'5.2': 'phpmyadmin/phpmyadmin:5.2.1',
'5.1': 'phpmyadmin/phpmyadmin:5.1.1',
'5.0': 'phpmyadmin/phpmyadmin:5.0.2',
},
Expand Down
4 changes: 2 additions & 2 deletions examples/5.x/.lando.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: lando-pma
services:
pma:
type: phpmyadmin:5.1
type: phpmyadmin:5.2
hosts:
- database
- database2
pma_theme:
type: phpmyadmin:5.0
type: phpmyadmin:5.2
hosts:
- database
- database2
Expand Down
2 changes: 1 addition & 1 deletion examples/5.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ lando ssh -s pma -c "env | grep PMA_HOSTS=database,database2"
lando ssh -s pma_theme -c "env | grep PMA_HOSTS=database,database2"

# Should have set a custom config file if specified
lando ssh -s pma_theme -c "cat /etc/phpmyadmin/config.user.inc.php" | grep ThemeDefault | grep pmaterial
lando ssh -s pma_theme -c "cat /etc/phpmyadmin/config.user.inc.php | grep ThemeDefault | grep pmaterial"
```

Destroy tests
Expand Down
Loading