-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 901 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
{
"name": "unicodeveloper/jusibe-php-lib",
"description": "Jusibe PHP Library",
"keywords": ["php","api","jusibe","Open Source","sms"],
"license": "MIT",
"authors": [
{
"name": "unicodeveloper",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.0|^7.1|^7.2",
"guzzlehttp/guzzle": "5.*|6.*",
"vlucas/phpdotenv": "^2.2|^3.6|^4.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"scrutinizer/ocular": "~1.1",
"satooshi/php-coveralls": "^0.7.0",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Unicodeveloper\\Jusibe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unicodeveloper\\Jusibe\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}