mirror of
https://github.com/SkillDisplay/PHPToolKit.git
synced 2024-11-13 05:06:08 +01:00
Daniel Siepmann
c75aa1f2c0
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.
32 lines
905 B
JSON
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"
|
|
}
|
|
}
|