Skip to content

Commit 74b39c8

Browse files
committed
phpdoc.sh: 5.0.x-dev
1 parent 76af3dd commit 74b39c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/php_api_ref/phpdoc.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AUTH_JSON=${1:-~/.composer/auth.json}; # Path to an auth.json file allowing to i
66
OUTPUT_DIR=${2:-./docs/api/php_api/php_api_reference}; # Path to the directory where the built PHP API Reference is hosted
77

88
DXP_EDITION='commerce'; # Edition from and for which the Reference is built
9-
DXP_VERSION='4.6.*'; # Version from and for which the Reference is built
9+
DXP_VERSION='5.0.x-dev'; # Version from and for which the Reference is built
1010
DXP_ADD_ONS=(connector-ai connector-openai automated-translation product-catalog-date-time-attribute); # Packages not included in $DXP_EDITION but added to the Reference, listed without their vendor "ibexa"
1111
DXP_EDITIONS=(oss headless experience commerce); # Available editions ordered by ascending capabilities
1212
PHPDOC_VERSION='3.7.1'; # Version of phpDocumentor used to build the Reference
@@ -18,8 +18,8 @@ PHPDOC_DIR="$(pwd)/tools/php_api_ref/.phpdoc"; # Absolute path to phpDocumentor
1818
PHP_BINARY="php -d error_reporting=`php -r 'echo E_ALL & ~E_DEPRECATED;'`"; # Avoid depreciation messages from phpDocumentor/Reflection/issues/529 when using PHP 8.2 or higher
1919
TMP_DXP_DIR=/tmp/ibexa-dxp-phpdoc; # Absolute path of the temporary directory in which Ibexa DXP will be installed and the PHP API Reference built
2020
FORCE_DXP_INSTALL=1; # If 1, empty the temporary directory, install DXP from scratch, build, remove temporary directory; if 0, potentially reuse the DXP already installed in temporary directory, keep temporary directory for future uses.
21-
BASE_DXP_BRANCH=''; # Branch from and for which the Reference is built when using a dev branch as version
22-
VIRTUAL_DXP_VERSION=''; # Version for which the reference is supposedly built when using dev branch as version
21+
BASE_DXP_BRANCH='master'; # Branch from and for which the Reference is built when using a dev branch as version
22+
VIRTUAL_DXP_VERSION='5.0.0'; # Version for which the reference is supposedly built when using dev branch as version
2323

2424
if [ ! -d $OUTPUT_DIR ]; then
2525
echo -n "Creating ${OUTPUT_DIR}";

0 commit comments

Comments
 (0)