-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.5 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
{
"name":"isocroft/auto-service-router",
"version":"0.0.1",
"description":"A project utilizing OpenCellID, Push SMS and REST APIs for automating last-mile deliveries on mobile/web applications",
"keywords": ["last-mile deliveries", "automation", "open cell-id"],
"license": "proprietary",
"type": "library",
"homepage": "https://github.com/isocroft/auto-logistics-service-router",
"license": "MIT",
"authors": [
{
"name": "Ifeora Okechukwu",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Sam ...",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Chinonso Ani",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle":"^6.3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "dev-master",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "~0.9.2",
"orchestra/testbench": "^3.5|~3.6.0",
"phpunit/phpunit": "^6.5|^7.0",
"squizlabs/php_codesniffer": "~3.2.0"
},
"autoload": {
"psr-4": {
"Isocroft\\AutoServiceRouter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Isocroft\\AutoServiceRouter\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}