-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.21 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "dealnews/db",
"type": "library",
"license": "BSD-3-Clause",
"description": "Database Library providing a PDO factory and CRUD operations",
"config": {
"optimize-autoloader": true,
"discard-changes": true,
"sort-packages": true
},
"bin": [
"bin/create_objects.php"
],
"require": {
"php": "^8.2",
"ext-pdo": "*",
"dealnews/console": "^1.0.1",
"dealnews/data-mapper": "^3.4",
"dealnews/get-config": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"DealNews\\DB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DealNews\\DB\\Tests\\": "tests/"
}
},
"scripts": {
"phan": [
"phan"
],
"test": [
"parallel-lint src/ tests/",
"phpunit --colors=never"
],
"lint": [
"parallel-lint src/ tests/"
],
"fix": [
"php-cs-fixer fix --config .php-cs-fixer.dist.php src tests"
]
}
}