-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 693 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 693 Bytes
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
{
"name": "pixelfear/composer-dist-plugin",
"type": "composer-plugin",
"description": "Downloads distributable assets to be used in packages so you don't have to commit them.",
"license": "MIT",
"require": {
"composer-plugin-api": "^1.1 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"mockery/mockery": "^1.3",
"composer/composer": "^1.10"
},
"extra": {
"class": "Pixelfear\\ComposerDistPlugin\\Plugin"
},
"autoload": {
"psr-4": {
"Pixelfear\\ComposerDistPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
}
}