-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (81 loc) · 2.86 KB
/
composer.json
File metadata and controls
96 lines (81 loc) · 2.86 KB
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
89
90
91
92
93
94
95
96
{
"name": "hal/hal",
"description": "Hal Deployment Platform - UI",
"license": "MIT",
"authors": [
{ "name": "Steve Kluck", "email": "steve@kluck.engineering" },
{ "name": "Byron Nagi", "email": "byro@fastmail.fm" }
],
"support": {
"source": "https://github.com/hal-platform/hal",
"issues": "https://github.com/hal-platform/hal/issues"
},
"autoload": {
"psr-4": { "Hal\\UI\\": "src" },
"files": [
"src/functions.php"
]
},
"scripts": {
"analyze": "phpstan analyse --configuration=phpstan.neon -l 4 src",
"lint": "vendor/bin/phplint --no-cache --ansi src",
"sniff": "phpcs --runtime-set ignore_warnings_on_exit true",
"sniff-nowarn": "phpcs -n",
"test": "phpunit",
"build": [
"@lint",
"@sniff",
"@analyze",
"@test"
]
},
"require": {
"php-64bit": "~7.1",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-pdo_sqlite": "*",
"ext-sodium": "~2.0 || ~7.2",
"ext-zlib": "*",
"aws/aws-sdk-php": "~3.50",
"doctrine/orm": "~2.6",
"doctrine/cache": "~1.6",
"guzzlehttp/guzzle": "~6.0",
"guzzlehttp/psr7": "~1.3",
"knplabs/github-api": "~2.8",
"neomerx/cors-psr7": "~1.0",
"php-http/guzzle6-adapter": "~1.1",
"predis/predis": "~1.0",
"psr/log": "*",
"hal/hal-core": "dev-master",
"ql/mcp-common": "~2.0",
"ql/mcp-logger": "~4.0",
"ql/mcp-panthor": "~3.3",
"slim/slim": "~3.7",
"symfony/cache": "~4.0",
"symfony/config": "~4.0",
"symfony/debug": "~4.0",
"symfony/dependency-injection": "~4.0",
"symfony/dotenv": "~4.0",
"symfony/finder": "~4.0",
"symfony/ldap": "~4.0",
"symfony/process": "~4.0",
"symfony/proxy-manager-bridge": "~4.0",
"symfony/yaml": "~4.0",
"twig/twig": "~2.4",
"league/oauth2-client": "~2.3.0",
"league/oauth2-github": "~2.0.0"
},
"require-dev": {
"symfony/var-dumper": "~4.0",
"overtrue/phplint": "~1.0",
"phpstan/phpstan": "~0.9",
"slevomat/coding-standard": "~4.0",
"squizlabs/php_codesniffer": "~3.0",
"codedungeon/phpunit-result-printer": "~0.5",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.2"
}
}