PHPToolKit/composer.json

39 lines
1,017 B
JSON
Raw Permalink Normal View History

2020-03-26 12:56:55 +01:00
{
2020-04-02 11:30:44 +02:00
"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",
2020-04-02 11:33:43 +02:00
"license": "GPL-2.0-or-later",
2020-04-02 11:30:44 +02:00
"authors": [
{
"name": "Florian Weiss",
"email": "github@weissheiten.at"
}
],
2020-03-26 12:56:55 +01:00
"require": {
"ext-json": "*",
2023-07-06 14:37:02 +02:00
"guzzlehttp/guzzle": "^7.7",
2023-07-05 16:47:25 +02:00
"php": "7.4.* || 8.1.* || 8.2.*"
2020-03-26 12:56:55 +01:00
},
"autoload": {
"files": [ "src/Constants/VerificationTypes.php" ],
"psr-4": {
"SkillDisplay\\PHPToolKit\\": "src/"
2020-03-26 12:56:55 +01:00
}
},
"autoload-dev": {
"psr-4": {
"SkillDisplay\\PHPToolKit\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.5"
2023-07-06 14:37:02 +02:00
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
2020-03-26 12:56:55 +01:00
}