-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "symplely/zend-ffi",
"description": "Provides the base API for creating extensions, or modifying Zend/PHP internal core with FFI.",
"keywords": [
"ffi",
"c-type",
"cdata",
"api",
"zend-api",
"ext",
"extensions",
"zend-extension",
"php-extension",
"core"
],
"homepage": "https://github.com/symplely/zend-ffi",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Lawrence Stubbs",
"email": "lstubbs@techno.express"
}
],
"require": {
"php": ">7.4",
"ext-ffi": "*"
},
"autoload": {
"files": [
"preload.php",
"zend/Constants.php",
"zend/Functions.php",
"zend/Threading.php"
],
"psr-4": {
"ZE\\": "zend/Types/",
"ZE\\Ast\\": "zend/Types/Ast/",
"ZE\\Hook\\": [
"zend/Types/Handlers/",
"zend/Types/Interfaces/"
],
"": "zend/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests",
"post-create-project-cmd": [
"php .ignore_autoload.php",
"composer update -d ."
]
}
}