forked from zoonman/linkedin-api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
{
"name": "zoonman/linkedin-api-php-client",
"description": "LinkedIn API PHP SDK with OAuth 2.0 & CSRF support. Can be used for social sign in or sharing on LinkedIn. Examples. Documentation.",
"type": "library",
"keywords": [
"linkedin", "linkedin-client", "linkedin-api", "linkedin-signin",
"linkedin-sdk", "linkedin-login", "linked in", "linkedin.com", "php-linkedin",
"oauth", "oauth2", "oauth2-client", "oauth2-authentication", "authentication",
"social", "rest", "api", "client", "social network", "auth", "authorization",
"wrapper", "integration", "platform"
],
"homepage": "https://github.com/zoonman/linkedin-api-php-client",
"require": {
"php": ">=5.6",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.3"
},
"license": "MIT",
"authors": [
{
"name": "Philipp Tkachev",
"email": "[email protected]",
"homepage": "http://www.zoonman.com/",
"role": "Developer"
},
{
"name": "Aleksey Salnikov",
"email": "[email protected]",
"homepage": "http://iamsalnikov.ru/",
"role": "Developer"
},
{
"name": "Daniel J. Post",
"homepage": "http://danieljpost.info/",
"role": "Developer"
}
],
"support": {
"docs": "https://www.zoonman.com/projects/linkedin-client/",
"source": "https://github.com/zoonman/linkedin-api-php-client",
"issues": "https://github.com/zoonman/linkedin-api-php-client/issues",
"wiki": "https://github.com/zoonman/linkedin-api-php-client/wiki"
},
"autoload": {
"psr-4": {"LinkedIn\\": "src/"}
},
"require-dev": {
"vlucas/phpdotenv": "~2.0",
"phpunit/phpunit": "~4.0",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "@stable"
},
"archive": {
"exclude": [
"examples",
"tests",
".env",
".travis.yml",
"phpunit.xml"
]
},
"autoload-dev": {}
}