-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.02 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"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": "hello@drunomics.com"
}
],
"autoload": {
"psr-4": { "drunomics\\ServiceUtils\\": "src/" }
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "^10.0",
"drupal/pathauto": "^1.11",
"drupal/coder": "^8.3",
"phpspec/prophecy-phpunit": "^2.0",
"drupal/core": "^11"
},
"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,
"drupal/core-composer-scaffold": true
}
}
}