forked from kuria/composer-pkg-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 929 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
{
"name": "melchiorkokernoot/composer-pkg-scripts",
"type": "composer-plugin",
"description": "Composer plugin that provides a way for packages to expose scripts to the root project",
"keywords": ["composer", "package", "scripts", "script"],
"version": "1.0.0",
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-json": "*",
"composer-plugin-api": "^1.1 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.6 || ^2.0",
"phpunit/phpunit": "^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"MelchiorKokernoot\\ComposerPkgScripts\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MelchiorKokernoot\\ComposerPkgScripts\\": "tests"
}
},
"extra": {
"class": "MelchiorKokernoot\\ComposerPkgScripts\\Plugin"
},
"scripts": {
"tests": "phpunit --colors=always"
}
}