-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
41 lines (41 loc) · 1012 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
{
"name": "foxy/foxy",
"description": "Fast, reliable, and secure NPM/Yarn/pnpm bridge for Composer",
"keywords": ["npm", "yarn", "composer", "bridge", "dependency manager", "package", "asset", "nodejs"],
"homepage": "https://github.com/fxpio/foxy",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "François Pluchino",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"composer-plugin-api": "^1.1|^2.0"
},
"require-dev": {
"composer/composer": "^1.5.0|^2.0.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Foxy\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"class": "Foxy\\Foxy",
"branch-alias": {
"dev-main": "1.2-dev"
}
}
}