-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1.05 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
{
"name": "mane-olawale/termii",
"description": "A simple Object Oriented PHP Client for Termii SMS API.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/mane-olawale/termii",
"support": {
"issues": "https://github.com/mane-olawale/termii/issues",
"source": "https://github.com/mane-olawale/termii"
},
"authors": [
{
"name": "Ilesanmi Olawale Adedotun",
"homepage": "https://twitter.com/mane_olawale",
"email": "horlwaley001@gmail.com"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "~6|~7",
"mane-olawale/rest-response": "^0.1.0"
},
"scripts": {
"tests": "vendor/bin/phpunit --verbose"
},
"autoload": {
"psr-4": {
"ManeOlawale\\Termii\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ManeOlawale\\Termii\\Tests\\": "tests/"
}
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^8.4|^9.5"
}
}