-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
58 lines (58 loc) · 1.82 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
{
"name": "liquetsoft/fias-laravel",
"type": "library",
"description": "Laravel bundle for FIAS database importer",
"keywords": ["php", "fias", "laravel"],
"license": "MIT",
"require": {
"php": ">=8.2",
"liquetsoft/fias-component": "^14.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"fakerphp/faker": "^1.7",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^5.0",
"nette/php-generator": "^4.0"
},
"autoload": {
"psr-4": {
"Liquetsoft\\Fias\\Laravel\\LiquetsoftFiasBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Liquetsoft\\Fias\\Laravel\\LiquetsoftFiasBundle\\Tests\\": "tests/",
"Liquetsoft\\Fias\\Laravel\\LiquetsoftFiasBundle\\Generator\\": "generator/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/liquetsoft/fias-laravel"
}
],
"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 -vv --allow-risky=yes",
"linter": [
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vv --dry-run --stop-on-violation --allow-risky=yes",
"vendor/bin/psalm --show-info=true --php-version=$(php -r \"echo phpversion();\")"
],
"entities": [
"php -f generator/generate_entities.php",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes -q"
]
},
"extra": {
"laravel": {
"providers": [
"Liquetsoft\\Fias\\Laravel\\LiquetsoftFiasBundle\\LiquetsoftFiasBundleServiceProvider"
]
}
}
}