Skip to content

Commit d7ec045

Browse files
author
Christopher Pitt
committed
Manual merges, I guess
1 parent a28e453 commit d7ec045

File tree

4 files changed

+1549
-511
lines changed

4 files changed

+1549
-511
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/cache
12
/coverage
23
/vendor
34
/node_modules

composer.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "pre/plugin",
33
"type": "composer-plugin",
44
"license": "MIT",
5+
"scripts": {
6+
"test": "vendor/bin/phpunit"
7+
},
58
"autoload": {
69
"psr-4": {
710
"Pre\\Plugin\\": "source"
@@ -13,9 +16,15 @@
1316
"source/macros.php"
1417
]
1518
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Pre\\Plugin\\Tests\\Fixtures\\": "tests/fixtures/namespaced"
22+
}
23+
},
1624
"require": {
1725
"yay/yay": "^0.7.0",
18-
"composer-plugin-api": "^1.1|^2.1"
26+
"composer-plugin-api": "^1.1|^2.1",
27+
"joshdifabio/composed": "^1.0"
1928
},
2029
"require-dev": {
2130
"composer/composer": "^1.3",
@@ -24,6 +33,9 @@
2433
"extra": {
2534
"class": [
2635
"\\Pre\\Plugin\\Composer\\Plugin"
27-
]
36+
],
37+
"pre": {
38+
"cache": "./cache"
39+
}
2840
}
2941
}

0 commit comments

Comments
 (0)