Skip to content

Commit 248e18f

Browse files
committed
composer init
1 parent c999de3 commit 248e18f

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

composer.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "thepeer/sdk",
3+
"type": "library",
4+
"license": "Apache-2.0",
5+
"authors": [
6+
{
7+
"name": "Michael Okoh",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"minimum-stability": "dev",
12+
"autoload": {
13+
"psr-4": {
14+
"Thepeer\\Sdk\\": "src/"
15+
}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"Thepeer\\Sdk\\Test\\": "tests"
20+
}
21+
},
22+
"scripts": {
23+
"test": "vendor/bin/phpunit tests"
24+
},
25+
"extra": {
26+
"laravel": {
27+
"providers": [
28+
"Thepeer\\Sdk\\ThepeerServiceProvider"
29+
]
30+
}
31+
},
32+
"require": {
33+
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0",
34+
"guzzlehttp/guzzle": "~6|~7"
35+
},
36+
"require-dev": {
37+
"mockery/mockery": "^1.0",
38+
"orchestra/testbench": "3.8.*|4.*",
39+
"phpunit/phpunit": "^8.0",
40+
"illuminate/contracts": "^5.8.15|^6.0",
41+
"illuminate/filesystem": "^5.8.15|^6.0",
42+
"illuminate/database": "^5.8.15|^6.0",
43+
"phpunit/php-code-coverage": "^7.0@dev"
44+
},
45+
"description": "Thepeer official Laravel SDK",
46+
"keywords": [
47+
"php",
48+
"github",
49+
"laravel",
50+
"Open Source",
51+
"payments",
52+
"thepeer",
53+
"peerstack",
54+
"laravel 6",
55+
"laravel 7",
56+
"laravel 8"
57+
]
58+
}

0 commit comments

Comments
 (0)