-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.27 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.27 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": "alephtools/sqlbuilder",
"type": "library",
"description": "The library to build plain SQL.",
"license": "MIT",
"keywords": ["aleph", "sql", "sql builder"],
"authors": [
{
"name": "Aleph Tav",
"email": "4lephtav@gmail.com"
}
],
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "10.*",
"friendsofphp/php-cs-fixer": "3.*",
"vimeo/psalm": "5.*",
"psalm/plugin-phpunit": "0.*"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"AlephTools\\SqlBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AlephTools\\SqlBuilder\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@psalm",
"@test"
],
"cs-check": "@php-cs-fixer fix --dry-run --diff",
"cs-fix": "@php-cs-fixer fix",
"php-cs-fixer": "php-cs-fixer --config=.php-cs-fixer.php --allow-risky=yes",
"psalm": "psalm --config=psalm.xml --no-cache",
"test": "XDEBUG_MODE=coverage phpunit"
}
}