forked from descope/descope-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 878 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": "descope/descope-php",
"type": "library",
"description": "Descope SDK for PHP",
"keywords": [
"drag-and-drop",
"authentication"
],
"homepage": "https://github.com/descope/php-sdk",
"license": "MIT",
"authors": [
{
"name": "Kevin Gao",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"web-token/jwt-framework": "^3.4",
"guzzlehttp/guzzle": "7.9.2 as 7.9.3",
"paragonie/constant_time_encoding": "^2.7.0",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"Descope\\SDK\\": "src/SDK/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php src/tests/DescopeSDKTest.php",
"license-check": "php src/tests/CheckLicense.php"
}
}