-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 937 Bytes
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 937 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "pre/plugin",
"type": "composer-plugin",
"license": "MIT",
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Pre\\Plugin\\": "source"
},
"files": [
"source/expanders.php",
"source/functions.php",
"source/autoload.php",
"source/macros.php"
]
},
"autoload-dev": {
"psr-4": {
"Pre\\Plugin\\Tests\\Fixtures\\": "tests/fixtures/namespaced"
}
},
"require": {
"yay/yay": "^0.7.0",
"composer-plugin-api": "^1.1|^2.1",
"joshdifabio/composed": "^1.0"
},
"require-dev": {
"composer/composer": "^1.3",
"phpunit/phpunit": "^5.0|^6.0|^7.0"
},
"extra": {
"class": [
"\\Pre\\Plugin\\Composer\\Plugin"
],
"pre": {
"cache": "./cache"
}
}
}