-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.24 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": "gmta/composer-velocita",
"description": "Fast and reliable Composer package downloads by using Velocita",
"keywords": ["composer", "cache", "performance", "speed", "availability", "velocita"],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Jelle Raaijmakers",
"email": "[email protected]"
}
],
"replace": {
"isaac/composer-velocita": "*"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.1.9",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpstan/phpstan": "^1.5.3",
"slevomat/coding-standard": "^8.14",
"symfony/flex": "^2.3.3"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"GMTA\\Velocita\\Composer\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
}
},
"extra": {
"class": "GMTA\\Velocita\\Composer\\VelocitaPlugin"
}
}