mirror of
https://github.com/SkillDisplay/PHPToolKit.git
synced 2024-11-10 20:36:08 +01:00
Daniel Siepmann
691adc00a6
This prevents unnecessary merge conflicts in future. Also code follows a simple formatting rule set and is easier to read.
33 lines
950 B
JSON
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.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",
|
|
"squizlabs/php_codesniffer": "^3.5"
|
|
}
|
|
}
|