-
Notifications
You must be signed in to change notification settings - Fork 299
/
composer.json
78 lines (78 loc) · 2.49 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
77
78
{
"name": "knplabs/doctrine-behaviors",
"description": "Doctrine Behavior Traits",
"type": "symfony-bundle",
"keywords": [
"behaviors", "doctrine", "timestampable", "translatable", "blameable", "softdeletable", "tree", "uuid"
],
"homepage": "http://knplabs.com",
"license": "MIT",
"authors": [
{ "name": "Knplabs", "homepage": "http://knplabs.com" }
],
"require": {
"php": ">=8.0",
"doctrine/common": "^3.3",
"doctrine/persistence": "^2.5|^3.0",
"doctrine/dbal": "^3.3",
"doctrine/orm": "^2.12",
"doctrine/doctrine-bundle": "^2.6",
"symfony/cache": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/security-core": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/string": "^5.4|^6.0",
"symfony/translation-contracts": "^2.4|^3.0",
"nette/utils": "^3.2",
"ramsey/uuid": "^4.2"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"psr/log": "^1.1",
"doctrine/annotations": "^1.13",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.7.10",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13.4",
"symplify/easy-coding-standard": "^10.2.9",
"symplify/phpstan-extensions": "^10.2.9",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.1",
"symplify/package-builder": "^10.2.9",
"symplify/phpstan-rules": "^10.2.9",
"phpstan/extension-installer": "^1.1",
"symplify/easy-ci": "^10.2.9"
},
"autoload": {
"psr-4": {
"Knp\\DoctrineBehaviors\\": "src",
"Knp\\DoctrineBehaviors\\PHPStan\\": "utils/phpstan-behaviors/src"
}
},
"autoload-dev": {
"psr-4": {
"Knp\\DoctrineBehaviors\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
}
}
}