-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcomposer.json
71 lines (71 loc) · 2.08 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
{
"name": "scienta/doctrine-json-functions",
"abandoned": false,
"type": "library",
"description": "A set of extensions to Doctrine that add support for json query functions.",
"keywords": [
"doctrine",
"orm",
"json",
"dql",
"database",
"mysql",
"postgres",
"postgresql",
"mariadb",
"sqlite"
],
"license": "MIT",
"authors": [
{
"name": "Doctrine Json Functions Contributors",
"homepage": "https://github.com/ScientaNL/DoctrineJsonFunctions/contributors"
}
],
"require": {
"php": "^8.1",
"ext-pdo": "*",
"doctrine/dbal": "^3.2 || ^4",
"doctrine/lexer": "^2.0 || ^3.0",
"doctrine/orm": "^2.19 || ^3"
},
"require-dev": {
"doctrine/coding-standard": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"phpstan/phpstan": "^1.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-doctrine": "^1.4",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^10.1",
"psalm/plugin-phpunit": "^0.18",
"slevomat/coding-standard": "~8",
"symfony/cache": "^5.4 || ^6.4 || ^7",
"vimeo/psalm": "^5.2",
"webmozart/assert": "^1.11"
},
"autoload": {
"psr-4": {
"Scienta\\DoctrineJsonFunctions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Doctrine\\Tests\\": "tests/Doctrine/Tests",
"Scienta\\DoctrineJsonFunctions\\Tests\\": "tests/"
}
},
"suggest": {
"dunglas/doctrine-json-odm": "To serialize / deserialize objects as JSON documents."
},
"scripts": {
"codestyle": "phpcs -q --report=checkstyle",
"phpstan": "phpstan analyze -v",
"psalm": "psalm --config=psalm.xml --threads=1 --no-cache"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}