-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 972 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 972 Bytes
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
46
47
48
{
"name": "lts/microdeps-curl",
"description": "A micro dependency that provides a foundation for using Curl",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Joseph Edmonds",
"email": "joseph@ltscommerce.dev"
}
],
"require": {
"php": "^8.1",
"ext-curl": "^8.1",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"lts/php-qa-ci": "dev-master@dev",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MicroDeps\\Curl\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"MicroDeps\\Curl\\Tests\\": [
"tests/"
]
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
},
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
}
}