Skip to content

Commit 3c435c0

Browse files
authored
GLPI 11 compatibility (#89)
1 parent fb318a9 commit 3c435c0

49 files changed

Lines changed: 921 additions & 618 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "Generate CI matrix"
2121
uses: "glpi-project/plugin-ci-workflows/.github/workflows/generate-ci-matrix.yml@v1"
2222
with:
23-
glpi-version: "10.0.x"
23+
glpi-version: "11.0.x"
2424
ci:
2525
name: "GLPI ${{ matrix.glpi-version }} - php:${{ matrix.php-version }} - ${{ matrix.db-image }}"
2626
needs: "generate-ci-matrix"

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [1.20.0] - 2025-09-16
9+
10+
### Added
11+
12+
- GLPI 11 compatibility
13+
14+
## [1.10.2]
15+
16+
### Fixed
17+
18+
- Tree not displayed
19+
20+
## [1.10.1]
21+
22+
### Added
23+
24+
- Add Japanese (Japan) locale
25+
26+
## [1.10.0]
27+
28+
### Added
29+
30+
- GLPI 10 compatibility
31+
32+
### Fixed
33+
34+
- Fix file delimiters
35+
36+
## [1.9.1]
37+
38+
### Added
39+
40+
- Add Czech (Czech Republic) locale
41+
42+
## [1.9.0]
43+
44+
### Added
45+
- GLPI 9.5 compatibility
46+

composer.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
11
{
22
"require": {
3-
"php": ">=7.4"
3+
"php": ">=8.2"
44
},
55
"require-dev": {
66
"friendsofphp/php-cs-fixer": "^3.85",
77
"glpi-project/tools": "^0.7.6",
8+
"friendsoftwig/twigcs": "^6.1",
9+
"glpi-project/phpstan-glpi": "^1.0",
810
"php-parallel-lint/php-parallel-lint": "^1.4",
9-
"phpstan/phpstan": "^2.1"
11+
"phpstan/extension-installer": "^1.4",
12+
"phpstan/phpstan": "^2.1",
13+
"phpstan/phpstan-deprecation-rules": "^2.0"
1014
},
1115
"config": {
1216
"optimize-autoloader": true,
1317
"platform": {
14-
"php": "7.4.0"
18+
"php": "8.2.99"
1519
},
16-
"sort-packages": true
20+
"sort-packages": true,
21+
"allow-plugins": {
22+
"phpstan/extension-installer": true
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"Glpi\\Tools\\": "../../tools/src/"
28+
}
1729
}
1830
}

0 commit comments

Comments
 (0)