-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 939 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
{
"name": "jjpmann/real-magnet-sdk",
"type": "library",
"description": "PHP Wrapper for RealMagnet API",
"keywords": ["realmagnet", "api", "php"],
"homepage": "http://github.com/jjpmann/real-magnet-sdk",
"license": "MIT",
"authors" : [
{
"name": "Jerry Price",
"email": "[email protected]",
"homepage": "http://github.com/jjpmann"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "~6.0",
"tightenco/collect": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.5",
"sllh/php-cs-fixer-styleci-bridge": "^2.1",
"friendsofphp/php-cs-fixer": "^1.11",
"misumirize/pre-commit-hook": "^0.1.1"
},
"autoload": {
"psr-4": {
"RealMagnet\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}