-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 1.88 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
{
"name": "drupol/composer-packages",
"description": "Composer Packages is a Composer plugin for getting information about installed packages in your project.",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"Packages discovery",
"Types discovery",
"Directories discovery",
"Composer plugin",
"Composer helper",
"Extension"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.4",
"composer-plugin-api": "^2",
"composer/composer": "^2.4",
"twig/twig": "^3.4"
},
"require-dev": {
"drupol/php-conventions": "^5.1",
"infection/infection": "^0.25 || ^0.26",
"phpunit/phpunit": "^8 || ^9"
},
"autoload": {
"psr-4": {
"ComposerPackages\\": "build",
"drupol\\ComposerPackages\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"drupol\\ComposerPackages\\tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"extra": {
"class": "drupol\\ComposerPackages\\Plugin"
},
"scripts": {
"post-install-cmd": "drupol\\ComposerPackages\\Plugin::regeneration",
"post-update-cmd": "drupol\\ComposerPackages\\Plugin::regeneration",
"changelog-unreleased": "auto_changelog -c .auto-changelog -u",
"changelog-version": "auto_changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2",
"phpunit": "vendor/bin/phpunit"
}
}