PHPToolKit/composer.json
Daniel Siepmann c75aa1f2c0
Support PHP 7.2 and 7.3
As those are still supported and used by many Unix distributions.
Many software is running on PHP 7.2 and 7.3 and the code base should
support those versions.
2020-10-05 08:45:52 +02:00

32 lines
905 B
JSON

{
"name": "skilldisplay/phptoolkit",
"description": "The SkillDisplay PHPToolKit includes predefined classes and methods for using the API and rendering verification related elements (like buttons)",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Florian Weiss",
"email": "github@weissheiten.at"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5",
"php": "7.2.* || 7.3.* || 7.4.*"
},
"autoload": {
"files": [ "src/Constants/VerificationTypes.php" ],
"psr-4": {
"SkillDisplay\\PHPToolKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SkillDisplay\\PHPToolKit\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpspec/prophecy-phpunit": "^2.0"
}
}