-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 KB
/
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
43
{
"name": "tomba-io/php",
"description": "Tomba.io is an Email Finder for B2B sales and email marketing",
"type": "library",
"license": "Apache-2.0",
"keywords": ["email", "Email Finder", "Email Verifier", "B2B", "email marketing"],
"homepage": "https://tomba.io/",
"support": {
"url": "https://tomba.io",
"email": "[email protected]"
},
"authors": [{
"name": "Mohamed Ben rebia",
"email": "[email protected]",
"homepage": "https://github.com/benemohamed",
"role": "Developer"
}],
"scripts": {
"format" : "phpcbf -p --standard=PSR2 src/ examples/",
"check" : "phpcs -p --standard=PSR2 src/ examples/"
},
"autoload": {
"psr-4": {
"Tomba\\": "src/Tomba"
}
},
"require": {
"php": ">=7.1.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-1.0": "1.0.x-dev"
}
}
}