-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 loc) · 1.12 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
{
"name": "tdev-agency/google-address-validation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"TDevAgency\\GoogleAddressValidation\\": "src/",
"TDevAgency\\GoogleAddressValidation\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "TDev Agency",
"email": "[email protected]"
}
],
"require": {
"php": "~7.3|~8.0.2",
"ext-json": "*",
"myclabs/php-enum": "^1.8",
"guzzlehttp/guzzle": "^7"
},
"require-dev": {
"phpunit/phpunit": "^8|^9.5",
"rector/rector": "^0.13.9",
"friendsofphp/php-cs-fixer": "^3.4",
"roave/security-advisories": "dev-latest",
"brainmaestro/composer-git-hooks": "^2.8.1",
"fakerphp/faker": "^1.20",
"vlucas/phpdotenv": "^5.4"
},
"scripts": {
"pre-commit": [
"echo 'Running pre-commit hooks!'",
"echo 'Removing xdebug_break'",
"find ./src -type f -name \"*.php\" -exec sed -i '' '/xdebug_break/d' {} \\;",
"find ./tests -type f -name \"*.php\" -exec sed -i '' '/xdebug_break/d' {} \\;",
"echo 'Running php-cs-fixer'",
"vendor/bin/php-cs-fixer fix"
]
}
}