forked from acquia/orca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 3.58 KB
/
Copy pathcomposer.json
File metadata and controls
107 lines (107 loc) · 3.58 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "acquia/orca",
"description": "A tool for testing all of Acquia's software packages together in the context of a realistic, functioning, best practices Drupal build",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.1",
"ext-dom": "*",
"ext-json": "*",
"ext-sqlite3": "*",
"acquia/coding-standards": "^0.2.0",
"behat/behat": "^3.5",
"composer/composer": "^1.7",
"cweagans/composer-patches": "^1.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"hassankhan/config": "^2.0",
"jakub-onderka/php-console-highlighter": "^0.4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"localheinz/composer-normalize": "^1.2",
"mockery/mockery": "^1.2",
"myclabs/php-enum": "^1.7",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6.5",
"stecman/symfony-console-completion": "^0.10.1",
"symfony/config": "^4.1",
"symfony/console": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/filesystem": "^4.1",
"symfony/finder": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/options-resolver": "^4.2",
"symfony/phpunit-bridge": "^4.2",
"symfony/process": "^4.1",
"symfony/yaml": "^4.1",
"vaimo/binary-chromedriver": "^5.0",
"weitzman/drupal-test-traits": "~1.0"
},
"conflict": {
"symfony/symfony": "*"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.5",
"sensiolabs/security-checker": "^5.0"
},
"config": {
"discard-changes": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"chromedriver": {
"version": "74.0.3729.6"
},
"hooks": {
"pre-commit": [
"set -e",
"vendor/bin/parallel-lint --exclude vendor --no-progress .",
"vendor/bin/phpcs --cache=var/.phpcs-cache"
],
"pre-push": "vendor/bin/phpcs",
"post-install-cmd": "vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "vendor/bin/cghooks update"
},
"patches": {
"pheromone/phpcs-security-audit": {
"Fix undefined index error": "https://patch-diff.githubusercontent.com/raw/FloeDesignTechnologies/phpcs-security-audit/pull/41.patch",
"Fix false positives for exec calls": "https://patch-diff.githubusercontent.com/raw/FloeDesignTechnologies/phpcs-security-audit/pull/43.patch"
}
},
"phpcodesniffer-search-depth": 4
},
"autoload": {
"psr-4": {
"Acquia\\Orca\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acquia\\Orca\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"@composer normalize"
],
"cghooks": "cghooks --ansi",
"phpcbf": "phpcbf",
"phpcs": "phpcs -s --cache=var/.phpcs-cache",
"phplint": "parallel-lint --exclude vendor --ignore-fails .",
"phpmd": "phpmd . text phpmd.xml.dist --ignore-violations-on-exit",
"phpunit": "phpunit"
},
"support": {
"issues": "https://github.com/acquia/orca/issues",
"source": "https://github.com/acquia/orca"
}
}