-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.5 KB
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
{
"name": "bircher/php-merge",
"type": "library",
"description": "A PHP merge utility using the Diff php library or the command line git.",
"keywords": ["git", "merge", "php-merge"],
"homepage": "https://github.com/bircher/php-merge",
"license": "MIT",
"authors": [
{
"name": "Fabian Bircher",
"email": "opensource@fabianbircher.com"
},
{
"name": "Ondrej Mirtes",
"email": "ondrej@mirtes.cz"
}
],
"require": {
"php": "^7.4 || ^8.0",
"sebastian/diff": "^2.0|^3.0|^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"gitonomy/gitlib": "^1.3",
"symplify/git-wrapper": "^9.1|^10.0",
"phpunit/phpunit": "~6|~7|~8|~9|~10|~11|~12",
"squizlabs/php_codesniffer": "~4",
"phpstan/phpstan": "~2",
"escapestudios/symfony2-coding-standard": "^3.5",
"phpstan/phpstan-deprecation-rules": "^2"
},
"autoload": {
"psr-0": {
"PhpMerge": "src/"
}
},
"scripts": {
"fix-grumphp": [
"if [ -f .git/hooks/pre-commit ]; then sed -i 's+/var/www/html/vendor/bin+./vendor/bin+g' .git/hooks/pre-commit; fi",
"if [ -f .git/hooks/pre-push ]; then sed -i 's+/var/www/html/vendor/bin+./vendor/bin+g' .git/hooks/pre-push; fi",
"if [ -f .git/hooks/commit-msg ]; then sed -i 's+/var/www/html/vendor/bin+./vendor/bin+g' .git/hooks/commit-msg; fi"
],
"post-install-cmd": [
"@fix-grumphp"
]
}
}