-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (65 loc) · 1.97 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
{
"name": "andanteproject/page-filter-form-bundle",
"description": "A Symfony Bundle to simplify the handling of page filters for lists/tables in admin panels.",
"keywords": [
"symfony",
"symfony-bundle",
"form",
"symfony-form",
"admin-panel",
"filters",
"php",
"php7",
"php74"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Andante Project",
"homepage": "https://github.com/andanteproject"
},
{
"name": "Cristoforo Cervino",
"homepage": "https://github.com/cristoforocervino"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/form": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/framework-bundle": "^4.0 | ^5.0 | ^6.0 | ^7.0",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.11",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-symfony": "^1.4"
},
"autoload": {
"psr-4": {
"Andante\\PageFilterFormBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andante\\PageFilterFormBundle\\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": {
"phpstan/extension-installer": true
}
}
}