forked from samoritano/linkedin-api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.46 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
{
"name": "pmg/linkedin-api-php-client",
"description": "This package is an SDK for using LinkedIn V2 Marketing API. You can use it for managing Company Pages in this social network",
"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/AgencyPMG/linkedin-api-php-client",
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.3.0"
},
"license": "MIT",
"support": {
"docs": "https://github.com/AgencyPMG/linkedin-api-php-client/blob/master/README.md",
"source": "https://github.com/AgencyPMG/linkedin-api-php-client",
"issues": "https://github.com/AgencyPMG/linkedin-api-php-client/issues"
},
"autoload": {
"psr-4": {"LinkedIn\\": "src/"}
},
"require-dev": {
"vlucas/phpdotenv": "~2.0",
"phpunit/phpunit": "~4.0",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "@stable"
},
"archive": {
"exclude": [
"tests",
".env",
"phpunit.xml"
]
},
"autoload-dev": {}
}