Skip to content

Commit 3914758

Browse files
LainowstonebuzzRom1-BMyvTsv
authored
Feature/glpi 11.0 (#249)
* GLPI 11 compatibility * removeuseless debug * GLPI 11 compatibility * beta4 * Update phpstan.neon Co-authored-by: Romain B. <[email protected]> * Add suggestions * Fix tests * Move units tests * beta5 * fix path * fix(form): fix tag dropdown display and save functionality (#276) * release GLPI 11.0 --------- Co-authored-by: Stanislas <[email protected]> Co-authored-by: Romain B. <[email protected]> Co-authored-by: Rom1-B <[email protected]> Co-authored-by: Langlois Gaëtan <[email protected]>
1 parent abcfcfc commit 3914758

21 files changed

+1068
-2503
lines changed

.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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [2.13.0] - 2025-09-30
9+
10+
### Added
11+
12+
- GLPI 11 compatibility
13+
814
## [2.12.5] - 2025-09-29
915

1016
### Fixed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"php": ">=7.4"
3+
"php": ">=8.2"
44
},
55
"require-dev": {
66
"friendsofphp/php-cs-fixer": "^3.86",
@@ -9,13 +9,12 @@
99
"php-parallel-lint/php-parallel-lint": "^1.4",
1010
"phpstan/extension-installer": "^1.4",
1111
"phpstan/phpstan": "^2.1",
12-
"phpstan/phpstan-deprecation-rules": "^2.0",
13-
"phpunit/phpunit": "^9.6"
12+
"phpstan/phpstan-deprecation-rules": "^2.0"
1413
},
1514
"config": {
1615
"optimize-autoloader": true,
1716
"platform": {
18-
"php": "7.4.0"
17+
"php": "8.2.99"
1918
},
2019
"sort-packages": true,
2120
"allow-plugins": {
@@ -24,7 +23,8 @@
2423
},
2524
"autoload": {
2625
"psr-4": {
27-
"GlpiPlugin\\Tag\\Tests\\": "tests"
26+
"GlpiPlugin\\Tag\\Tests\\": "tests",
27+
"GlpiPlugin\\Tag\\": "inc/"
2828
}
2929
},
3030
"autoload-dev": {

0 commit comments

Comments
 (0)