mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
f678a20463
Now that the required PHP version has been raised to php74, set it in the composer.json file and regenerate everything, following the instructions @ https://docs.moodle.org/dev/Composer, also with php74. That's the only change (raised php version) as far as no change has been performed to extension.
63 lines
2.2 KiB
JSON
63 lines
2.2 KiB
JSON
{
|
|
"name": "moodle/moodle",
|
|
"license": "GPL-3.0-or-later",
|
|
"description": "Moodle - the world's open source learning platform",
|
|
"type": "project",
|
|
"homepage": "https://moodle.org",
|
|
"repositories": [
|
|
{
|
|
"type": "vcs",
|
|
"url": "https://github.com/moodlehq/MinkExtension.git"
|
|
}
|
|
],
|
|
"require-dev": {
|
|
"phpunit/phpunit": "9.5.*",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"behat/mink": "~1.8",
|
|
"friends-of-behat/mink-extension": "dev-master",
|
|
"behat/mink-goutte-driver": "~1.2",
|
|
"symfony/process": "^4.0 || ^5.0",
|
|
"behat/behat": "3.10.*",
|
|
"oleg-andreyev/mink-phpwebdriver": "^1.0"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-0": {
|
|
"Moodle\\BehatExtension": "lib/behat/extension/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"php": ">=7.4.0",
|
|
"ext-iconv": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-curl": "*",
|
|
"ext-openssl": "*",
|
|
"ext-ctype": "*",
|
|
"ext-zip": "*",
|
|
"ext-zlib": "*",
|
|
"ext-gd": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-spl": "*",
|
|
"ext-pcre": "*",
|
|
"ext-dom": "*",
|
|
"ext-xml": "*",
|
|
"ext-xmlreader": "*",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-hash": "*",
|
|
"ext-fileinfo": "*"
|
|
},
|
|
"suggest": {
|
|
"ext-mysqli": "Needed when Moodle uses MySQL or MariaDB database.",
|
|
"ext-pgsql": "Needed when Moodle uses PostgreSQL database.",
|
|
"ext-sqlsrv": "Needed when Moodle uses MS SQL Server database.",
|
|
"ext-oci8": "Needed when Moodle uses Oracle database.",
|
|
"ext-tokenizer": "Enabling Tokenizer PHP extension is recommended, it improves Moodle Networking functionality.",
|
|
"ext-xmlrpc": "Enabling XMLRPC PHP extension is useful for web services and Moodle networking.",
|
|
"ext-soap": "Enabling SOAP PHP extension is useful for web services and some plugins.",
|
|
"ext-sodium": "Enabling Sodium PHP extension is recommended, it is used by Moodle encryption API.",
|
|
"ext-exif": "Enabling Exif PHP extension is recommended, it is used by Moodle to parse image meta data."
|
|
}
|
|
}
|