klicktipp-php-client/composer.json
2025-01-05 15:28:57 +01:00

49 lignes
1.2 KiB
JSON

{
"name": "d3/klicktipp-php-client",
"type": "library",
"description": "A PHP Client for the Klicktipp API",
"keywords": [
"api",
"php",
"Klicktipp"
],
"homepage": "https://www.d3data.de",
"license": "MIT",
"authors": [
{
"name": "Daniel Seifert",
"email": "git@daniel-seifert.com"
}
],
"require": {
"php": "^8.0",
"composer/composer": "^2.7.1",
"doctrine/collections": "^1.8.0",
"guzzlehttp/guzzle": "~7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"overtrue/phplint": "^1.2",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {
"D3\\KlicktippPhpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"D3\\KlicktippPhpClient\\tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --no-coverage",
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose --allow-risky=yes",
"check-code": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress --ansi"
}
}