-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 2.23 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
{
"name": "andanteproject/timestampable-bundle",
"description": "A Symfony Bundle to handle entities createdAt and updatedAt dates with Doctrine",
"keywords": [
"symfony",
"symfony-bundle",
"doctrine",
"doctrine-orm",
"timestampable",
"php",
"php8"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Andante Project",
"homepage": "https://github.com/andanteproject"
},
{
"name": "Cristoforo Cervino",
"homepage": "https://github.com/cristoforocervino"
},
{
"name": "Luca Cividini",
"homepage": "https://github.com/lucacividini"
}
],
"require": {
"php": "^8.2",
"symfony/framework-bundle": "^5.0 | ^6.0 | ^7.0",
"doctrine/common": "^2.13 || ^3.0",
"doctrine/event-manager": "^1.2 | ^2.0",
"symfony/clock": "^6.2 | ^7.0"
},
"require-dev": {
"ext-json": "*",
"roave/security-advisories": "dev-master",
"doctrine/orm": "^2.15.3",
"phpunit/phpunit": "^9.5",
"doctrine/doctrine-bundle": "^2.10",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-symfony": "^1.0",
"friendsofphp/php-cs-fixer": "^3.58"
},
"autoload": {
"psr-4": {
"Andante\\TimestampableBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andante\\TimestampableBundle\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse src tests",
"phpunit-base": "phpunit tests/",
"phpunit": "@phpunit-base --testdox",
"phpunit-coverage-text": "@phpunit-base --coverage-text --colors=never",
"cs-check": "mkdir -p var/cache && php-cs-fixer fix --dry-run --diff --cache-file=var/cache/.php_cs.cache",
"cs-fix": "mkdir -p var/cache && php-cs-fixer fix --diff --cache-file=var/cache/.php_cs.cache"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
}
}