-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 899 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 899 Bytes
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
28
29
30
31
32
{
"name": "kkevindev/postcode-tech",
"description": "A library to easily lookup Dutch postcodes using postcode.tech",
"license": "gpl-3.0-or-later",
"type": "library",
"require": {
"php": "^8.2",
"webmozart/assert": "^2",
"symfony/http-client": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^v3.89"
},
"autoload": {
"psr-4": {
"Kkevindev\\PostcodeTech\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kkevindev\\PostcodeTech\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse",
"composer-validate": "composer validate --strict"
}
}