-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
104 lines (104 loc) · 2.7 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
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
{
"name": "custom/civiremote_funding",
"description": "Drupal frontend for funding applications of CiviCRM Funding Manager.",
"type": "drupal-custom-module",
"license": "GPL-3.0-only",
"authors": [
{
"name": "SYSTOPIA",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Drupal\\civiremote_funding\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\civiremote_funding\\": "tests/src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "0.6-dev"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/systopia/civiremote"
},
{
"type": "vcs",
"url": "[email protected]:systopia/drupal-json_forms.git"
},
{
"type": "vcs",
"url": "https://github.com/systopia/opis-json-schema-ext"
},
{
"type": "vcs",
"url": "https://github.com/systopia/expression-language-ext"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": "^7.4 || ^8",
"beberlei/assert": "*",
"custom/civiremote": "^1.0@beta",
"drupal/cmrf_core": "^2.1@beta",
"drupal/json_forms": "~0.1",
"drupal/views_current_path": "^3.0",
"drupal/views_data_export": "^1.4",
"drupal/xls_serialization": "^1.3"
},
"require-dev": {
"drupal/core": "^9.5 || ^10",
"drupal/core-dev": "^9.5 || ^10"
},
"suggest": {
"drupal/fontawesome": "To load Font Awesome icons. https://www.drupal.org/project/fontawesome"
},
"conflict": {
"drupal/cmrf_core": "2.1.0-beta5"
},
"scripts": {
"composer-phpstan": [
"@composer --working-dir=tools/phpstan"
],
"composer-tools": [
"@composer-phpstan"
],
"phpcs": [
"@php vendor/bin/phpcs"
],
"phpcbf": [
"@php vendor/bin/phpcbf"
],
"phpstan": [
"@php tools/phpstan/vendor/bin/phpstan"
],
"phpunit": [
"@php vendor/bin/phpunit --coverage-text"
],
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}