-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 937 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
36
37
38
39
40
41
42
{
"name": "bureaupartners/extract-address-from-text",
"description": "With this package you can extract the address from a unformatted text string",
"keywords": [
"bureaupartners",
"address",
"extract"
],
"homepage": "https://github.com/bureaupartners/extract-address-from-text",
"license": "MIT",
"authors": [
{
"name": "Mark Hameetman",
"email": "mark@bureau.partners",
"homepage": "https://bureau.partners",
"role": "Developer"
}
],
"require": {
"php": "^7.2 | ^8.0"
},
"require-dev": {
"pragmarx/countries": "^0.8",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"BureauPartners\\ExtractAddressFromText\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BureauPartners\\ExtractAddressFromText\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}