forked from vanilla/jsConnectPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 889 Bytes
/
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
{
"name": "vanilla/js-connect-php",
"description": "Client library for Vanilla's jsConnect SSO system.",
"type": "library",
"require": {
"php": ">=7.1.0",
"firebase/php-jwt": "^5.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"classpreloader/classpreloader": "^4.0",
"classpreloader/console": "^3.0",
"vanilla/standards": "^1.3",
"vimeo/psalm": "^3.10"
},
"license": "MIT",
"authors": [
{
"name": "Todd Burry",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/functions.compat.php"
],
"psr-4": {
"Vanilla\\JsConnect\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vanilla\\JsConnect\\Tests\\": "tests"
}
}
}