-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 3.29 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 3.29 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
97
{
"name": "liturgical-calendar/api",
"description": "an API for a perpetual Catholic Liturgical Calendar",
"authors": [
{
"name": "John R. D'Orazio",
"email": "priest@johnromanodorazio.com"
}
],
"type": "library",
"keywords": ["api","rest","restful","liturgy","calendar","liturgical","universal","roman","catholic"],
"homepage": "https://litcal.johnromanodorazio.com",
"require": {
"php": ">=8.4",
"ext-calendar": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-gettext": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-zip": "*",
"swaggest/json-schema": "~0.12",
"sabre/vobject": "^4.5",
"vlucas/phpdotenv": "^5.6",
"nyholm/psr7": "^1.8",
"laminas/laminas-httphandlerrunner": "^2.12",
"nyholm/psr7-server": "^1.1",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"guzzlehttp/guzzle": "^7.10",
"react/filesystem": "0.2.x-dev",
"psr/log": "^3.0",
"monolog/monolog": "^3.9",
"firebase/php-jwt": "^6.11 || ^7.0",
"symfony/cache": "^8.0",
"plesk/ratchetphp": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^4.0",
"phpstan/phpstan": "^2.0@stable",
"php-parallel-lint/php-parallel-lint": "^1.4",
"php-parallel-lint/php-console-highlighter": "^1.0",
"captainhook/captainhook-phar": "^5.25",
"captainhook/hook-installer": "^1.0",
"phpunit/phpunit": "^12.3@stable"
},
"suggest": {
"ext-yaml": "Required to return application/yaml responses; otherwise request JSON/XML/ICS."
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"LiturgicalCalendar\\Api\\": "src/"
},
"files": ["src/pgettext.php"]
},
"autoload-dev": {
"psr-4": {
"LiturgicalCalendar\\Tests\\": "phpunit_tests/"
}
},
"minimum-stability": "dev",
"prefer-stable" : true,
"scripts": {
"post-install-cmd": [
"LiturgicalCalendar\\Api\\Utilities::postInstall"
],
"post-update-cmd": [
"LiturgicalCalendar\\Api\\Utilities::postInstall"
],
"lint": "phpcs",
"lint:fix": "phpcbf",
"lint:md": "npx --yes markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#vendor\" \"#.aider*\"",
"lint:md:fix": "npx --yes markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\" \"#vendor\" \"#.aider*\"",
"lint:openapi": "npx --yes @redocly/cli lint",
"analyse": "phpstan analyse",
"parallel-lint": "parallel-lint --exclude .git --exclude vendor .",
"test": "phpunit --testdox --display-warnings",
"test:quick": "phpunit --testdox --display-warnings --exclude-group slow",
"start": "./start-server.sh",
"stop": "./stop-server.sh",
"ws:start": "./ws-start-server.sh",
"ws:stop": "./ws-stop-server.sh"
},
"config": {
"allow-plugins": {
"captainhook/captainhook-phar": true,
"captainhook/hook-installer": true
}
}
}