-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 911 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 911 Bytes
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
{
"name" : "piko/db-record",
"description" : "A lightweight Active Record helper built on top of PDO.",
"keywords" : [
"active record",
"database",
"record",
"sql"
],
"authors" : [{
"name" : "Sylvain Philip",
"homepage" : "https://www.sphilip.com",
"role" : "Developer"
}
],
"homepage" : "https://github.com/piko-framework/db-record",
"license" : "LGPL-3.0-or-later",
"require" : {
"php" : ">=8.1.0",
"piko/core" : "^2.2"
},
"autoload" : {
"psr-4" : {
"Piko\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Piko\\Tests\\" : "tests/"
}
},
"require-dev" : {
"phpunit/phpunit" : "^10.5",
"squizlabs/php_codesniffer" : "^3.5",
"phpstan/phpstan" : "^1.8"
},
"scripts" : {
"test" : [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit" : "phpunit",
"phpcs" : "phpcs --standard=vendor/piko/core/coding-standard src",
"phpstan" : "phpstan"
}
}