forked from KnpLabs/DoctrineBehaviors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.28 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
{
"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": ">=7.3",
"doctrine/common": "^3.0",
"doctrine/persistence": "^2.0",
"doctrine/dbal": "^2.9",
"doctrine/orm": "^2.8",
"symfony/cache": "^4.4|^5.2",
"symfony/dependency-injection": "^4.4|^5.2",
"symfony/http-kernel": "^4.4|^5.2",
"symfony/security-core": "^4.4|^5.2",
"symfony/framework-bundle": "^4.4|^5.2",
"symfony/string": "^5.2",
"symfony/translation-contracts": "^2.3",
"nette/utils": "^3.2",
"ramsey/uuid": "^4.0",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"psr/log": "^1.1",
"doctrine/annotations": "^1.12",
"doctrine/doctrine-bundle": "^2.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^0.12.83",
"phpunit/phpunit": "^9.5",
"rector/rector-prefixed": "^0.10.4",
"symplify/easy-coding-standard": "^9.2.18",
"symplify/phpstan-extensions": "^9.2.18",
"phpstan/phpstan-doctrine": "^0.12.33",
"phpstan/phpstan-phpunit": "^0.12.18",
"symplify/package-builder": "^9.2.18",
"symplify/phpstan-rules": "^9.2.18",
"symplify/config-transformer": "^9.2",
"symplify/amnesia": "^9.2",
"phpstan/extension-installer": "^1.1"
},
"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"
}
}