generated from axleus/axleus-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.31 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.31 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
{
"name": "php-db/phpdb-sqlite",
"description": "SQLite support for php-db",
"license": "BSD-3-Clause",
"keywords": [
"php-db",
"sqlite",
"db"
],
"homepage": "https://github.com/php-db/phpdb-sqlite/discussions",
"support": {
"issues": "https://github.com/php-db/phpdb-sqlite/issues",
"source": "https://github.com/php-db/phpdb-sqlite",
"forum": "https://github.com/php-db/phpdb-sqlite/discussions"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"config-provider": "PhpDb\\Sqlite\\ConfigProvider"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"php-db/phpdb": "^0.6.0",
"webmozart/assert": "^2.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"laminas/laminas-coding-standard": "^3.0.1",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5.42"
},
"suggest": {
"laminas/laminas-servicemanager": "Laminas\\ServiceManager component"
},
"autoload": {
"psr-4": {
"PhpDb\\Sqlite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDbTest\\Sqlite\\": "test/unit/",
"PhpDbIntegrationTest\\Sqlite\\": "test/integration/"
}
},
"scripts": {
"check": [
"@cs-check",
"@sa",
"@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\"",
"sa": "vendor/bin/phpstan analyse --memory-limit=256M",
"sa-gen-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
"sa-verbose": "vendor/bin/phpstan analyse --memory-limit=256M -vv",
"upload-coverage": "coveralls -v"
}
}