forked from okta/samples-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 698 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 698 Bytes
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
{
"name": "okta/samples-php",
"description": "Okta Hosted Login Sample Application for Okta",
"license": "Apache-2.0",
"authors": [
{
"name": "Okta Developers",
"email": "developers@okta.com"
}
],
"require": {
"php": "^7.0",
"nikic/fast-route": "^1.2",
"twig/twig": "~2.0",
"vlucas/phpdotenv": "^2.4",
"okta/jwt-verifier": "^0.2.0",
"guzzlehttp/psr7": "^1.4",
"spomky-labs/jose": "^7.0"
},
"scripts": {
"server:start": "php -S 127.0.0.1:8080 -t ./ ./index.php",
"test": "cd ../ && if [[ -f testenv ]]; then source testenv; fi && npm run test:custom-login"
},
"autoload": {
"files": [
"functions.php"
]
}
}