-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.34 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
42
43
44
45
{
"name": "pxp/trunk",
"description": "The all-in-one tool for managing and developing PHP projects.",
"type": "project",
"bin": "bin/trunk",
"authors": [
{
"name": "Ryan Chandler",
"email": "[email protected]",
"homepage": "https://ryangjchandler.co.uk",
"role": "Developer"
}
],
"license": "MIT",
"homepage": "https://pxplang.org",
"source": {
"url": "https://github.com/pxp-lang/trunk",
"type": "git",
"reference": "main"
},
"require": {
"pact-foundation/composer-downloads-plugin": "^2.1"
},
"extra": {
"downloads": {
"trunk": {
"url": "https://github.com/pxp-lang/trunk/releases/download/{$version}/trunk-{$arch}-{$os}.tar.gz",
"path": "bin",
"version": "v0.1.1",
"variables": {
"{$arch}": "strtolower(php_uname('m')) == 'arm64' ? 'aarch64' : 'x86_64'",
"{$os}": "PHP_OS_FAMILY == 'Linux' ? 'linux-unknown-gnu' : 'apple-darwin'"
},
"executable": [
"bin/trunk"
]
}
}
},
"config": {
"allow-plugins": {
"pact-foundation/composer-downloads-plugin": true
}
}
}