-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 948 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 948 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
33
34
35
36
37
38
39
40
41
{
"name": "rapidez/pro6pp-postcode",
"description": "Support postcode lookup using pro6pp.nl",
"keywords": [
"rapidez",
"pro6pp-postcode",
"postcode",
"postcode lookup",
"pro6pp"
],
"homepage": "https://github.com/rapidez/pro6pp-postcode",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "indy koning",
"email": "indy@justbetter.nl",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"rapidez/core": "^5.0"
},
"autoload": {
"psr-4": {
"Rapidez\\Pro6ppPostcode\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Rapidez\\Pro6ppPostcode\\Pro6ppPostcodeServiceProvider"
]
}
}
}