-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.76 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "os2forms/os2forms_sync",
"description": "OS2Forms sync",
"type": "drupal-module",
"license": "MIT",
"authors": [
{
"name": "Mikkel Ricky",
"email": "rimi@aarhus.dk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"drupal/webform": "^6",
"drush/drush": "^11 || ^12",
"symfony/options-resolver": "^5.4 || ^6.0"
},
"require-dev": {
"drupal/coder": "^8.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"mglaman/drupal-check": "^1.4",
"mglaman/phpstan-drupal": "~1.2.0",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"//": "Make sure that our PHPUnit test classes can load our Drupal module classes",
"psr-4": { "Drupal\\os2forms_sync\\": "src/" }
},
"scripts": {
"code-analysis/drupal-check": [
"drupal-check --deprecations --analysis --exclude-dir=vendor *.* src"
],
"code-analysis": [
"@code-analysis/drupal-check"
],
"coding-standards-check/phpcs": [
"phpcs --standard=phpcs.xml.dist"
],
"coding-standards-check": [
"@coding-standards-check/phpcs"
],
"coding-standards-apply/phpcbf": [
"phpcbf --standard=phpcs.xml.dist"
],
"coding-standards-apply": [
"@coding-standards-apply/phpcbf"
],
"test": [
"phpunit tests"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}