forked from Happyr/LinkedIn-API-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.35 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.35 KB
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
{
"name": "elninotech/linkedin-api-client",
"description": "LinkedIn API client. Handles OAuth, CSRF protection. Easy to implement and extend. This is a standalone library for any composer project.",
"license": "MIT",
"type": "library",
"keywords": [
"LinkedIn",
"OAuth",
"API",
"Client",
"SDK"
],
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias@happyr.com"
},
{
"name": "Victor Lap",
"email": "victor@elnino.tech"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"php-http/discovery": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^12.0",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Elnino\\LinkedIn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elnino\\LinkedIn\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"lint": "./tools/php-cs-fixer check",
"lint-fix": "./tools/php-cs-fixer fix",
"infection": "./tools/infection",
"phpstan": "./tools/phpstan analyse --memory-limit=-1",
"test": "./tools/phpunit",
"test-coverage": "XDEBUG_MODE=coverage ./tools/phpunit --coverage-text"
}
}