-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 1000 Bytes
/
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
{
"name": "drunomics/service-utils",
"description": "Provides setter injection traits in order to ease dependency injection of services.",
"keywords": ["drupal", "dependency-injection"],
"homepage": "https://github.com/drunomics/service-utils",
"type": "library",
"license": "GPL-2.0+",
"authors": [
{
"name": "drunomics GmbH",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "drunomics\\ServiceUtils\\": "src/" }
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"drupal/pathauto": "^1.11",
"drupal/coder": "^8.3",
"phpspec/prophecy-phpunit": "^2.0",
"drupal/core": "^10"
},
"repositories": {
"0": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"scripts": {
"cs": "phpcs --colors",
"cbf": "phpcbf",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}