forked from Speelpenning-nl/laravel-postcode-nl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 912 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
28
29
30
31
32
33
34
35
{
"name": "speelpenning/laravel-postcode-nl",
"description": "A Laravel client using the Postcode.nl REST API for Dutch address verification.",
"license": "MIT",
"authors": [
{
"name": "Gerben Speelpenning",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"illuminate/config": "5.7.*",
"illuminate/contracts": "5.7.*",
"illuminate/routing": "5.7.*",
"illuminate/support": "5.7.*",
"illuminate/validation": "5.7.*"
},
"require-dev": {
"laravel/laravel": "5.7.*",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4": {
"Speelpenning\\PostcodeNl\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
}
}