-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
72 lines (72 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hieofone-as/hieofone-as",
"description": "Health Information Exchange of One Authorization Server.",
"keywords": ["hieofone", "laravel", "uma", "oauth2", "oidc", "php", "javascript", "health", "fhir", "medical"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Michael Shihjay Chen",
"email": "[email protected]",
"homepage": "http://noshemr.wordpress.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"adci/full-name-parser": "^0.2.4",
"bshaffer/oauth2-server-httpfoundation-bridge": "^1.3",
"bshaffer/oauth2-server-php": "^1.10",
"cache/filesystem-adapter": "^1.0",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^4.0",
"google/apiclient": "~2.0",
"knplabs/github-api": "^2.12",
"laravel/framework": "^6.0",
"laravel/socialite": "^4.0",
"laravelcollective/html": "^6.0.0",
"php-http/guzzle6-adapter": "^1.1",
"phpseclib/phpseclib": "~2.0",
"shihjay2/openid-connect-uma-php": "dev-master",
"simplesoftwareio/simple-qrcode": "~1.4"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5",
"symfony/css-selector": "2.8.*|3.1.*",
"symfony/dom-crawler": "2.8.*|3.1.*",
"nunomaduro/collision": "^2.0",
"filp/whoops": "~2.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}