-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.82 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": "dhtml/dhtmlsql",
"type": "library",
"description": "A secure, typed and lightweight MySQL database wrapper built on PHP's mysqli extension.",
"keywords": ["mysqli", "mysql", "database", "db", "library", "php", "prepared-statements"],
"homepage": "https://github.com/dhtml/dhtmlsql",
"license": "MIT",
"authors": [
{
"name": "Anthony Ogundipe",
"homepage": "https://github.com/dhtml"
}
],
"require": {
"php": "^8.4",
"ext-mysqli": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.64",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Dhtml\\DhtmlSql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhtml\\DhtmlSql\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:compat": "phpunit --testsuite compatibility",
"analyse": "phpstan analyse",
"lint": "find src tests -name '*.php' -print0 | xargs -0 php -l",
"style:check": "php-cs-fixer check --diff --ansi",
"style:fix": "php-cs-fixer fix --ansi",
"rector:check": "rector process --dry-run",
"rector": "rector process",
"quality": [
"@style:check",
"@analyse",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}