-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (40 loc) · 1009 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
{
"name": "zeroshotlabs/php_mqueue",
"description": "Speed-optimized PHP FFI bindings for POSIX message queues.",
"keywords": ["mqueue", "message queue", "posix", "ffi", "binding", "pmq"],
"license": "gpl-3.0-or-later",
"homepage": "https://zsl.ai",
"type": "library",
"authors": [
{
"name": "Zero Shot Labs, Inc.",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zeroshotlabs/php_mqueue.git"
}
],
"run": {
"post-package-update": [
"bash ./clean_and_build.sh"
],
"post-package-install": [
"bash ./clean_and_build.sh"
]
},
"require": {
"php": ">=8.3",
"ext-ffi": "*",
"zeroshotlabs/libphphi": "*"
},
"autoload": {
"files": [
"./header.inc"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}