forked from codin/dbal-query-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.25 KB
/
composer.json
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
{
"name": "codin/dbal-query-filter",
"description": "Query filter for Doctrine DBAL",
"license": "Apache-2.0",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"doctrine/dbal": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpspec/phpspec": "@stable",
"phpstan/phpstan": "@stable"
},
"autoload": {
"psr-4": {
"Codin\\DBAL\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix . --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline_array"
],
"test": [
"phpstan analyse",
"phpspec run"
],
"uninstall": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}