-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 2 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
{
"name": "liquetsoft/fias-component",
"description": "FIAS database parser for php.",
"type": "library",
"keywords": ["php", "fias"],
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-libxml": "*",
"ext-xmlreader": "*",
"ext-zip": "*",
"ext-json": "*",
"symfony/serializer": "^5.0|^6.0|^7.0",
"symfony/property-access": "^5.0|^6.0|^7.0",
"symfony/property-info": "^5.0|^6.0|^7.0",
"symfony/process": "^5.0|^6.0|^7.0",
"psr/log": "^1.0|^2.0|^3.0",
"marvin255/file-system-helper": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"fakerphp/faker": "^1.7",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Liquetsoft\\Fias\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Liquetsoft\\Fias\\Component\\Tests\\": "tests/src",
"Liquetsoft\\Fias\\Component\\Tests\\Mock\\": "tests/mock",
"Liquetsoft\\Fias\\Component\\Generator\\": "generator"
}
},
"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 --allow-risky=yes -vvv",
"linter": [
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --stop-on-violation --allow-risky=yes -vvv",
"vendor/bin/psalm --show-info=true --php-version=$(php -r \"echo phpversion();\")"
],
"xsd": "php -f generator/download_entities.php",
"entities": "php -f generator/generate_entities.php && vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes -q"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/liquetsoft/fias-component"
}
]
}