-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 742 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 742 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
{
"name": "sj-i/php-fuse",
"description": "PHP FFI bindings for FUSE",
"type": "library",
"minimum-stability": "dev",
"license": "MIT",
"keywords": [
"php",
"fuse",
"ffi"
],
"authors": [
{
"name": "sji",
"homepage": "https://twitter.com/sji_ch"
}
],
"autoload": {
"psr-4": {
"Fuse\\" : "src/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-ffi": "*",
"sj-i/phpdoc-type-reader": "0.1.1",
"sj-i/typed-cdata": "0.0.5",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "9.5.9",
"squizlabs/php_codesniffer": "3.6.0",
"php-coveralls/php-coveralls": "2.4.3",
"vimeo/psalm": "4.10.0",
"jetbrains/phpstorm-stubs": "dev-master"
}
}