Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: "Generate CI matrix"
uses: "glpi-project/plugin-ci-workflows/.github/workflows/generate-ci-matrix.yml@v1"
with:
glpi-version: "11.0.x"
glpi-version: "12.0.x"
ci:
name: "GLPI ${{ matrix.glpi-version }} - php:${{ matrix.php-version }} - ${{ matrix.db-image }}"
needs: "generate-ci-matrix"
Expand Down
4 changes: 2 additions & 2 deletions setup.php.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ define('PLUGIN_{UNAME}_VERSION', '{VERSION}');

// Minimal GLPI version, inclusive
/** @phpstan-ignore theCodingMachineSafe.function (safe to assume this isn't already defined) */
define("PLUGIN_{UNAME}_MIN_GLPI_VERSION", "11.0.0");
define("PLUGIN_{UNAME}_MIN_GLPI_VERSION", "12.0.0");

// Maximum GLPI version, exclusive
/** @phpstan-ignore theCodingMachineSafe.function (safe to assume this isn't already defined) */
define("PLUGIN_{UNAME}_MAX_GLPI_VERSION", "11.0.99");
define("PLUGIN_{UNAME}_MAX_GLPI_VERSION", "12.0.99");

/**
* Init hooks of the plugin.
Expand Down