Skip to content

Commit 3215834

Browse files
committed
Add GLPI 9.5 compatibility
* Replace usage of deprecated 'DBMysql::fetch_assoc()' * Add marketplace compatibility * Add menu icon * Use GLPI 9.5 min required PHP version * Add 1.9.0 version definition
1 parent 6497357 commit 3215834

8 files changed

Lines changed: 570 additions & 345 deletions

File tree

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: php
22
php:
3-
- 5.6
3+
- 7.2
44
- 7.4
5-
- nightly
65

76
before_script:
87
- composer self-update
@@ -11,10 +10,6 @@ before_script:
1110
script:
1211
- vendor/bin/robo --no-interaction code:cs --strict
1312

14-
matrix:
15-
allow_failures:
16-
- php: nightly
17-
1813
cache:
1914
directories:
2015
- $HOME/.composer/cache

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
{
2+
"require": {
3+
"php": "^7.2"
4+
},
25
"require-dev": {
36
"glpi-project/tools": "^0.1"
47
},
58
"config": {
9+
"optimize-autoloader": true,
610
"platform": {
7-
"php": "5.6"
8-
}
11+
"php": "7.2.0"
12+
},
13+
"sort-packages": true
914
}
1015
}

0 commit comments

Comments
 (0)