-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.3 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
{
"name": "tenstreet-api",
"description": "A PHP SDK for the Tenstreet API.",
"keywords": ["tenstreet", "ten street", "ten", "street", "trucking", "crm"],
"license": "proprietary",
"authors": [
{
"name": "Brian Logan",
"email": "blogan@collingmedia.com",
"homepage": "https://collingmedia.com"
}
],
"require": {
"php": ">=7.2.0",
"illuminate/support": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/config": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/http": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"orchestra/testbench": "~3.4.2|~3.5.0|~3.6.0|~3.7.0",
"phpunit/phpunit": "^6.3",
"fzaninotto/faker": "^1.8"
},
"autoload": {
"psr-4": {
"CollingMedia\\Tenstreet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CollingMedia\\Tenstreet\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CollingMedia\\Tenstreet\\ServiceProvider"
],
"aliases": {
"Package": "CollingMedia\\Tenstreet\\Facade"
}
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}