PHPToolKit/composer.json
2020-09-24 16:54:45 +02:00

33 lines
880 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": {
"guzzlehttp/guzzle": "^6.5",
"ext-json": "*",
"php": "^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"
}
}