forked from okta/okta-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.65 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
{
"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.2 | ^7.3 | ^7.4 | ^8.0",
"psr/http-message": "^1.0",
"php-http/client-common": "^2.1",
"php-http/httplug": "^2.3",
"php-http/message": "^1.13",
"php-http/discovery": "^1.14",
"php-http/curl-client": "^2.2",
"symfony/yaml": "^5.4 | ^6",
"nesbot/carbon": "^2.0",
"tightenco/collect": "^8",
"guzzlehttp/psr7": "^1.4",
"psr/cache": "^1.0",
"league/flysystem-memory": "^1.0",
"cache/filesystem-adapter": "^1.0",
"vlucas/phpdotenv": "^5.4",
"lcobucci/jwt": "^4.0@alpha"
},
"require-dev": {
"phpunit/phpunit": "^8.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 ."
}
}