-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "chibex/ozioma-php",
"type": "library",
"license": "MIT",
"homepage": "https://ozioma.net",
"description": "Ozioma for PHP library helps to make API calls to Ozioma Cloud Messaging and Communications Platform for birthday contact and sms newsletter subscription.",
"keywords": [
"chibex",
"ozioma-php",
"ozioma",
"sms",
"messaging",
"message",
"api",
"newsletter",
"birthday",
"subscriber",
"birthday contact",
"birthday sms",
"birthday message",
"sms newsletter",
"contact",
"bulk sms"
],
"support": {
"docs": "https://ozioma.net/api/docs",
"issues": "https://github.com/chibex-tech/ozioma-php/issues",
"source": "https://github.com/chibex-tech/ozioma-php",
"rss": "https://github.com/chibex-tech/ozioma-php/releases.atom"
},
"authors": [
{
"name": "Chibex Technologies",
"email": "info@chibex.net",
"homepage": "https://chibex.net",
"role": "Owner"
}
],
"require": {
},
"require-dev": {
"phpunit/phpunit": "~5.3",
"scrutinizer/ocular": "^1.1",
"guzzlehttp/guzzle": "^6.2",
"squizlabs/php_codesniffer": "^2.3",
"vlucas/phpdotenv": "^2.2"
},
"autoload": {
"psr-4": {
"Chibex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chibex\\Ozioma\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}