-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
84 lines (84 loc) · 2.47 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
79
80
81
82
83
84
{
"name": "andanteproject/period-bundle",
"description": "A Symfony Bundle to integrate thephpleague/period into Doctrine and Symfony Form",
"keywords": [
"php",
"symfony",
"datetime",
"date",
"symfony-bundle",
"doctrine",
"period",
"doctrine-orm",
"datetime-range",
"symfony-form",
"datetime-period",
"doctrine-type",
"collection",
"calendar",
"range",
"daterange",
"sequence",
"interval",
"query-builder",
"doctrine-types"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Andante Project",
"homepage": "https://github.com/andanteproject"
},
{
"name": "Cristoforo Cervino",
"homepage": "https://github.com/StevioStudio"
}
],
"require": {
"php": "^8.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"league/period": "^4.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/property-access": "^5.4 || ^6.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan": "^1.2",
"symfony/yaml": "^5.4 || ^6.0",
"phpunit/phpunit": "^9.5",
"ext-json": "*",
"doctrine/orm": "^2.8",
"doctrine/cache": "^2.1"
},
"autoload": {
"psr-4": {
"Andante\\PeriodBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andante\\PeriodBundle\\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
}
}
}