generated from ivuorinen/github-base-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
27 lines (27 loc) · 815 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "ivuorinen/business-data-fetcher",
"description": "Library to fetch finnish business data",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.4",
"spatie/data-transfer-object": "^3.9"
},
"autoload": {
"psr-4": {
"Ivuorinen\\BusinessDataFetcher\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"ivuorinen/markdowndocs": "^4.0",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"docs": "php vendor/bin/phpdoc-md generate src > docs.md",
"lint": "php vendor/bin/phpcs --standard=PSR12 src",
"lint-fix": "php vendor/bin/phpcbf --standard=PSR12 src",
"phpstan": "php vendor/bin/phpstan analyse"
}
}