-
Notifications
You must be signed in to change notification settings - Fork 97
/
composer.json
40 lines (40 loc) · 1.25 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
{
"name": "happyr/linkedin-api-client",
"type": "library",
"description": "LinkedIn API client. Handles OAuth, CSRF protection. Easy to implement and extend. This is a standalone library for any composer project.",
"keywords": ["LinkedIn", "OAuth", "API", "Client", "SDK"],
"homepage": "http://developer.happyr.com/libraries/linkedin-php-client",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.0",
"php-http/guzzle5-adapter": "^1.0",
"guzzlehttp/psr7": "^1.2",
"mockery/mockery": "^0.9",
"illuminate/support": "^5.0"
},
"autoload": {
"psr-4": { "Happyr\\LinkedIn\\": "src/" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}