-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.79 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
{
"name": "digitalpolygon/polymer-drupal-contracts",
"type": "library",
"description": "Stable PSR-14 event contracts shared across the Polymer Drupal family. A normal PSR-4 library, not a runtime-loaded Polymer extension.",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Digital Polygon Engineering",
"homepage": "https://www.digitalpolygon.com/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/digitalpolygon/polymer-drupal-contracts/issues",
"source": "https://github.com/digitalpolygon/polymer-drupal-contracts"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"symfony/event-dispatcher-contracts": "^2.5 || ^3"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9 || ^10",
"squizlabs/php_codesniffer": "^3",
"symfony/event-dispatcher": "^5.4 || ^6 || ^7"
},
"autoload": {
"psr-4": {
"DigitalPolygon\\Polymer\\Drupal\\Contracts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalPolygon\\PolymerDrupalContractsTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-0.x": "0.2.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "find src -name '*.php' -print0 | xargs -0 -n1 -P4 -- php -l",
"cs": "phpcs --report=full -s",
"sa": "phpstan analyse -v -c phpstan.neon",
"test": "phpunit -c tests/phpunit/phpunit.xml.dist --no-coverage"
}
}