forked from DamienHarper/auditor-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.26 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
{
"name": "damienharper/auditor-bundle",
"type": "symfony-bundle",
"description": "Integrate auditor library in your Symfony projects.",
"keywords": ["doctrine", "audit", "auditor", "audit-log", "audit-trail"],
"license": "MIT",
"authors": [
{
"name": "Damien Harper",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"damienharper/auditor": "dev-master",
"doctrine/annotations": "^1.8",
"doctrine/doctrine-bundle": "^1.9|^2.0",
"doctrine/orm": "^2.7",
"symfony/event-dispatcher": "^3.4|^4.0|^5.0",
"symfony/lock": "^3.4|^4.0|^5.0",
"symfony/security-bundle": "^3.4|^4.0|^5.0",
"symfony/translation": "^3.4|^4.0|^5.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"DH\\AuditorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DH\\AuditorBundle\\Tests\\": "tests",
"DH\\Auditor\\Tests\\": "vendor/damienharper/auditor/tests"
}
},
"require-dev": {
"doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
"friendsofphp/php-cs-fixer": "^2.15",
"gedmo/doctrine-extensions": "^2.4",
"matthiasnoback/symfony-dependency-injection-test": "^3.1|^4.0",
"nyholm/symfony-bundle-test": "^1.6",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "^7.0|^8.0",
"symfony/browser-kit": "^5.1",
"symfony/css-selector": "^5.1",
"symfony/framework-bundle": "^3.4|^4.0|^5.0",
"symfony/var-dumper": "^3.4|^4.0|^5.0",
"twig/extensions": "^1.5"
},
"conflict": {
"doctrine/persistence": "<1.3"
},
"scripts": {
"test": "php -d pcov.enabled=1 ./vendor/bin/phpunit --colors=always",
"csfixer": "vendor/bin/php-cs-fixer fix --config=.php_cs --using-cache=no --verbose --ansi",
"stan": "vendor/bin/phpstan --ansi analyse src"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}