-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 806 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 806 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
{
"name": "cataphract/libarchive",
"type": "php-ext",
"description": "PHP extension for reading and writing archives via libarchive",
"license": "MIT",
"authors": [
{
"name": "Gustavo Lopes",
"email": "cataphract@php.net",
"role": "lead"
}
],
"require": {
"php": "^8.0"
},
"support": {
"source": "https://github.com/cataphract/php-libarchive"
},
"php-ext": {
"extension-name": "archive",
"download-url-method": ["pre-packaged-binary", "composer-default"],
"configure-options": [
{
"name": "with-libarchive",
"description": "Path to libarchive installation",
"needs-value": true
}
]
}
}