-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.3 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "lemonade/component_postcode",
"type": "library",
"description": "A lightweight PHP library for validating and formatting international postal codes (ZIP/PSC).",
"keywords": ["postcode", "zipcode", "postal", "validator", "formatter", "lemonade"],
"support": {
"issues": "https://github.com/johnnyxlemonade/component_postcode/issues",
"source": "https://github.com/johnnyxlemonade/component_postcode"
},
"license": "MIT",
"authors": [
{
"name": "Honza Mudrak",
"email": "honzamudrak@gmail.com",
"homepage": "https://github.com/johnnyxlemonade",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Lemonade\\Postcode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lemonade\\Postcode\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1 <8.5"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0"
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist --memory-limit=1G"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}