mirror of
https://github.com/ivuorinen/business-data-fetcher.git
synced 2026-03-13 09:59:16 +00:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "ivuorinen/business-data-fetcher",
|
|
"description": "Library to fetch finnish business data",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-json": "*",
|
|
"guzzlehttp/guzzle": "^7.4",
|
|
"cuyz/valinor": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Ivuorinen\\BusinessDataFetcher\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Ivuorinen\\BusinessDataFetcher\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "^4.0",
|
|
"phpstan/phpstan": "^2.0",
|
|
"pestphp/pest": "^3.0",
|
|
"rector/rector": "^2.3",
|
|
"captainhook/captainhook": "^5.0",
|
|
"captainhook/hook-installer": "^1.0",
|
|
"ramsey/conventional-commits": "^1.7",
|
|
"captainhook/secrets": "^0.9.7",
|
|
"phpstan/extension-installer": "^1.0",
|
|
"jbelien/phpstan-sarif-formatter": "^1.0",
|
|
"bartlett/sarif-php-converters": "^1.0"
|
|
},
|
|
"scripts": {
|
|
"lint": [
|
|
"php vendor/bin/phpcs --standard=PSR12 src",
|
|
"php vendor/bin/rector --dry-run"
|
|
],
|
|
"lint-fix": [
|
|
"php vendor/bin/phpcbf --standard=PSR12 src",
|
|
"php vendor/bin/rector"
|
|
],
|
|
"rector": "php vendor/bin/rector",
|
|
"phpstan": "php vendor/bin/phpstan analyse",
|
|
"test": "php vendor/bin/pest"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"captainhook/hook-installer": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
}
|
|
}
|