forked from KnpLabs/DoctrineBehaviors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.5 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": "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.2|^8.0",
"doctrine/common": "^2.7|^3.0",
"doctrine/persistence": "^1.3.4|^2.0",
"doctrine/dbal": "^2.9",
"doctrine/orm": "^2.7",
"symfony/cache": "^4.4|^5.1",
"symfony/dependency-injection": "^4.4|^5.1",
"symfony/http-kernel": "^4.4|^5.1",
"symfony/security-core": "^4.4|^5.1",
"symfony/framework-bundle": "^4.4|^5.1",
"symfony/string": "^5.0",
"symfony/translation-contracts": "^2.1",
"nette/utils": "^3.0",
"ramsey/uuid": "^3.9|^4.0",
"symfony/polyfill-php80": "^1.18"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"psr/log": "^1.1",
"doctrine/annotations": "^1.8",
"doctrine/doctrine-bundle": "^2.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.12.40",
"phpunit/phpunit": "^8.5|^9.2",
"rector/rector": "^0.8.7",
"symplify/changelog-linker": "^8.3.25",
"symplify/easy-coding-standard": "^8.3.25",
"symplify/phpstan-extensions": "^8.3.25",
"phpstan/phpstan-doctrine": "^0.12.15",
"phpstan/phpstan-phpunit": "^0.12.11",
"slevomat/coding-standard": "^6.3.11",
"symplify/package-builder": "^8.3.25"
},
"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",
"rector": "vendor/bin/rector process --config rector-ci.php",
"changelog": [
"vendor/bin/changelog-linker dump-merges --in-categories --ansi",
"vendor/bin/changelog-linker link --ansi",
"vendor/bin/changelog-linker cleanup --ansi"
]
}
}