forked from okta/okta-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
{
"name": "okta/sdk",
"description": "PHP Wrapper for the Okta API",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Brian Retterer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 | ^8.0",
"psr/http-message": "^1.0",
"php-http/client-common": "^2.2",
"php-http/httplug": "^2.2",
"php-http/message": "^1.11",
"php-http/discovery": "^1.13",
"php-http/curl-client": "^2.2",
"symfony/yaml": "^3.2|^4.3|^5.0",
"nesbot/carbon": "^2.0",
"illuminate/collections": "^8.29.0",
"guzzlehttp/psr7": "^1.7.0",
"psr/cache": "^2.0",
"league/flysystem-memory": "^1.0",
"cache/filesystem-adapter": "^1.0",
"vlucas/phpdotenv": "^3.3|^4.1|^5.3",
"lcobucci/jwt": "3.4.3 | ^4.0",
"http-interop/http-factory-guzzle": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.*",
"symfony/var-dumper": "^4.3",
"php-http/mock-client": "^1.0"
},
"autoload": {
"psr-4": {
"Okta\\": "src"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:unit": "phpunit --testsuite=Unit --colors=always",
"test:integration": "phpunit --testsuite=Integration --colors=always",
"rebuild-resources": [
"@delete-resources",
"@generate-resources",
"@test",
"@fix-code"
],
"delete-resources": [
"rm -rf ./src/Generated"
],
"generate-resources": "cd ./openapi && npm run generator",
"fix-code": "phpcbf ."
}
}