forked from BookingSync/oauth2-bookingsync-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.24 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
{
"name": "e-lodgy/oauth2-bookingsync-php",
"description": "BookingSync OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"license": "MIT",
"authors": [
{
"name": "Sebastien Grosjean",
"email": "dev@bookingsync.com",
"homepage": "https://github.com/bookingsync",
"role": "Developer"
},
{
"name": "Benjamin Malgras",
"homepage": "https://github.com/benjaminmal",
"role": "Developer"
}
],
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authorisation",
"bookingsync"
],
"require": {
"php": "^7.4|^8.0",
"league/oauth2-client": "^2.4",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.6.8",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"e-lodgy/coding-standard": "^1.1.5",
"phpstan/phpstan": "^1.10.18"
},
"autoload": {
"psr-4": {
"Bookingsync\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bookingsync\\OAuth2\\Client\\Test\\": "test/src/"
}
}
}