This repository was archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.68 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.68 KB
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
62
{
"name": "adrianmejias/factom-api",
"description": "A simple Laravel service provider for the Factom API.",
"type": "library",
"homepage": "https://github.com/adrianmejias/factom-api",
"license": "MIT",
"keywords": [
"factom",
"factomd",
"factom-walletd",
"factom-debug",
"PHP",
"API",
"Laravel"
],
"support": {
"issues": "https://github.com/adrianmejias/factom-api/issues",
"source": "https://github.com/adrianmejias/factom-api"
},
"authors": [{
"name": "Adrian",
"email": "adrianmejias@gmail.com",
"homepage": "https://adrianmejias.com",
"role": "Developer"
}],
"require": {
"php" : "~7.0",
"illuminate/support": "~5.5.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit" : "^6.3",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"AdrianMejias\\FactomApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AdrianMejias\\FactomApi\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"AdrianMejias\\FactomApi\\FactomApiServiceProvider"
],
"aliases": {
"FactomApi": "AdrianMejias\\FactomApi\\Facades\\FactomApi",
"FactomWalletApi": "AdrianMejias\\FactomApi\\Facades\\FactomWalletApi",
"FactomDebugApi": "AdrianMejias\\FactomApi\\Facades\\FactomDebugApi"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}