PHPToolKit/composer.json
Daniel Siepmann 691adc00a6
Follow and validate against PSR-12
This prevents unnecessary merge conflicts in future.
Also code follows a simple formatting rule set and is easier to read.
2020-10-05 08:49:33 +02:00

34 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"
}
}