-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rich-id/terms-module-chromium-bundle",
"description": "A magic bundle",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.com"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/rich-id/terms-module-chromium",
"docs": "https://github.com/rich-id/terms-module-chromium/blob/master/README.md",
"issues": "https://github.com/rich-id/terms-module-chromium/issues"
},
"require": {
"php": "^8.1",
"chrome-php/chrome": "^1.7",
"rich-id/terms-module-bundle": "^3.0",
"richcongress/bundle-toolbox": "^2.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"phpunit/phpunit": "^9.5",
"richcongress/static-analysis": "^0.2",
"richcongress/test-suite": "^0.2",
"roave/security-advisories": "dev-latest",
"symfony/monolog-bundle": "^3.7"
},
"autoload": {
"psr-4": {
"RichId\\TermsModuleChromiumBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RichId\\TermsModuleChromiumBundle\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks add --ignore-lock"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"./bin/php-cs-fixer fix"
],
"pre-push": [
"./bin/php-cs-fixer fix --dry-run",
"./bin/static_analysis"
]
}
}
}