-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.08 KB
/
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
36
37
38
39
40
41
{
"name": "consolidation/self-update-fixture",
"description": "Fixtures project to test consolidation/self-update",
"type": "project",
"require": {
"symfony/console": "^5",
"tm/tooly-composer-script": "^1.4"
},
"bin": ["bin/wonder"],
"scripts": {
"build": "@phar:build",
"phar:build": [
"rm -Rf ./wonder",
"vendor/bin/phar-composer.phar build .",
"mv self-update-fixture.phar wonder",
"chmod +x wonder"
],
"post-install-cmd": [
"Tooly\\ScriptHandler::installPharTools"
],
"post-update-cmd": [
"Tooly\\ScriptHandler::installPharTools"
]
},
"autoload": {
"psr-4": {
"Consolidation\\SelfUpdateFixture\\": "src/"
}
},
"extra": {
"tools": {
"phar-composer": {
"url": "https://clue.engineering/phar-composer-latest.phar",
"dev-only": true
}
}
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true
}