-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (41 loc) · 885 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
34
35
36
37
38
39
40
41
42
43
{
"name": "pronskiy/phpup",
"description": "The PHP toolchain installer",
"keywords": [
"php",
"toolchain",
"composer"
],
"license": "MIT",
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/pronskiy/conductor.git"
}
],
"require": {
"php": "^8.3",
"composer/composer": "^2.7.3",
"symfony/var-dumper": "^v7.0.6",
"cweagans/composer-patches": "^2.0.0-beta2",
"pronskiy/locus": "^0.2",
"artisan-build/conductor": "@dev"
},
"extra": {
"patches": {
"symfony/var-dumper": {
"Fix SAPI": "patches/symfony/var-dumper.patch"
},
"composer/composer": {
"Fix SAPI": "patches/composer/composer.patch"
}
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"pronskiy/locus": false
}
}
}