-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 852 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
{
"name": "bangpound/composer-constants",
"type": "composer-plugin",
"description": "Automatically define constants that expose details of the Composer configuration",
"require": {
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^10.3"
},
"license": "MIT",
"authors": [
{
"name": "Benjamin Doherty",
"email": "bjd@bangpound.org"
}
],
"autoload": {
"psr-4": {
"Bangpound\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bangpound\\Composer\\Tests\\": "tests/"
}
},
"extra": {
"class": "Bangpound\\Composer\\ConstantsPlugin",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}