-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "atlance/http-doctrine-dbal-filter",
"description": "dbal dynamic filter from http query",
"license": "MIT",
"type": "library",
"keywords": [
"filter",
"doctrine-dbal",
"doctrine dbal dynamic filter"
],
"authors": [
{
"name": "Anton Stepanov",
"email": "[email protected]"
}
],
"homepage": "https://github.com/atlance/http-doctrine-dbal-filter",
"require": {
"php": "^8.1",
"doctrine/dbal": "^2.7",
"psr/simple-cache": "^3.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"ext-curl": "*",
"ext-dom": "*",
"ext-memcached": "*",
"ext-sqlite3": "*",
"brianium/paratest": "^7.2",
"ergebnis/composer-normalize": "^2.37",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "^0.18.5",
"symfony/cache": "^6.3",
"vimeo/psalm": "^5.15"
},
"autoload": {
"psr-4": {
"Atlance\\HttpDbalFilter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atlance\\HttpDbalFilter\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"all": [
"@test",
"@php-analyze"
],
"php-analyze": [
"@phpstan",
"@psalm"
],
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon --level max --no-progress --memory-limit=-1",
"psalm": "vendor/bin/psalm --shepherd",
"rector": "vendor/bin/rector process src",
"test": "XDEBUG_MODE=coverage vendor/bin/paratest -c phpunit.xml.dist --colors --runner=WrapperRunner"
}
}