-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
45 lines (45 loc) · 1.68 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
{
"name": "liquetsoft/fias-symfony",
"type": "symfony-bundle",
"description": "Symfony bundle for FIAS database importer.",
"keywords": ["php", "fias", "symfony"],
"license": "MIT",
"require": {
"php": ">=8.2",
"liquetsoft/fias-component": "^14.0",
"symfony/uid": "^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^5.0|^6.0|^7.0",
"symfony/http-client": "^5.0|^6.0|^7.0",
"doctrine/doctrine-bundle": "^2.0|^3.0",
"doctrine/orm": "^2.6|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"fakerphp/faker": "^1.7",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^5.0",
"nette/php-generator": "^3.5"
},
"autoload": {
"psr-4": {
"Liquetsoft\\Fias\\Symfony\\LiquetsoftFiasBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml.dist",
"coverage": "vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-html=Tests/coverage",
"fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --allow-risky=yes",
"linter": [
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --stop-on-violation --allow-risky=yes",
"vendor/bin/psalm --show-info=true --php-version=$(php -r \"echo phpversion();\")"
],
"entities": [
"php -f Resources/build/generate_entities.php",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes -q"
]
}
}