-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
88 lines (88 loc) · 2.74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "nosh2/nosh2",
"description": "NOSH ChartingSystem.",
"keywords": ["nosh", "laravel", "medical", "jquery", "javascript", "php", "health", "ehr", "emr"],
"license": "AGPL-3.0",
"type": "project",
"authors": [
{
"name": "Michael Shihjay Chen",
"email": "[email protected]",
"homepage": "http://noshemr.wordpress.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"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",
"elibyy/tcpdf-laravel": "^8.0.0",
"fideloper/proxy": "^4.0",
"google/apiclient": "~2.0",
"http-interop/http-factory-guzzle": "^1.0",
"guzzlehttp/guzzle": "^7.0.1",
"jenssegers/date": "*",
"knplabs/github-api": "^3.0",
"kub-at/php-simple-html-dom-parser": "dev-master",
"laravel/framework": "^8.0",
"laravel/socialite": "^5.0",
"laravel/tinker": "^2.0",
"laravelcollective/html": "^6.0.0",
"league/flysystem-aws-s3-v3": "^1.0",
"phpseclib/phpseclib": "~2.0",
"pragmarx/countries": "^0.7",
"shihjay2/openid-connect-uma-php": "dev-master",
"shihjay2/tcpdi-merger": "dev-master",
"simplesoftwareio/simple-qrcode": "~1.4",
"soapbox/laravel-formatter": "2.x",
"symfony/yaml": "^5.2",
"web-token/jwt-core": "^2.2",
"web-token/jwt-easy": "^2.2",
"web-token/jwt-key-mgmt": "^2.2",
"web-token/jwt-signature-algorithm-rsa": "^2.2"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fakerphp/faker": "^1.9",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.0",
"symfony/css-selector": "2.8.*|3.1.*",
"symfony/dom-crawler": "2.8.*|3.1.*",
"nunomaduro/collision": "^5.0",
"filp/whoops": "~2.0"
},
"autoload": {
"classmap": [
"database",
"app/Libraries"
],
"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
}
}