PHPToolKit/composer.json
2023-07-05 16:47:49 +02:00

33 lines
950 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.4.* || 8.1.* || 8.2.*"
},
"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",
"squizlabs/php_codesniffer": "^3.5"
}
}