-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.02 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "php-db/phpdb-changeit",
"description": "",
"license": "BSD-3-Clause",
"keywords": [
"php-db"
],
"support": {
"issues": "https://github.com/php-db/changeit/issues",
"source": "https://github.com/php-db/changeit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-component-installer": true
}
},
"extra": {
"laminas": {
"config-provider": "PhpDb\\ChangeIt\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"beberlei/assert": "^3.3",
"psr/container": "^2.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^3.0.1",
"laminas/laminas-servicemanager": "^4.4",
"phpunit/phpunit": "^11.5.15",
"psalm/plugin-phpunit": "^0.19.2",
"vimeo/psalm": "^6.8.8"
},
"autoload": {
"psr-4": {
"PhpDb\\ChangeIt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDbTest\\ChangeIt\\": "test/unit/",
"PhpDbTestIntegration\\ChangeIt\\": "test/integration/"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test",
"@test-integration"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"static-analysis": "psalm --shepherd --stats",
"sa-set-baseline": "psalm --set-baseline",
"sa-no-baseline": "psalm --shepherd --stats --ignore-baseline",
"upload-coverage": "coveralls -v"
}
}