-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.86 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "bibleget/endpoint",
"description": "REST API endpoint for BibleGet I/O Bible quotation service",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "John Romano D'Orazio",
"email": "priest@johnromanodorazio.com"
}
],
"require": {
"php": ">=8.2",
"ext-pdo_pgsql": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"laminas/laminas-httphandlerrunner": "^2.12",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^3.0",
"monolog/monolog": "^3.9",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpstan/phpstan": "^2.0@stable",
"captainhook/captainhook-phar": "^5.25",
"captainhook/hook-installer": "^1.0",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"BibleGet\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BibleGet\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"test": "phpunit --testdox --display-warnings",
"test:quick": "phpunit --testdox --display-warnings --exclude-group slow",
"test:coverage": "phpunit --testdox --display-warnings --coverage-text --coverage-html=coverage",
"start": "./start-server.sh",
"stop": "./stop-server.sh",
"restart": "./restart-server.sh",
"lint": "phpcs",
"lint:fix": "phpcbf",
"lint:openapi": "npx @redocly/cli lint openapi.json"
},
"config": {
"allow-plugins": {
"captainhook/captainhook-phar": true,
"captainhook/hook-installer": true
}
}
}