php-ipc/composer.json
Christopher Vagnetoft 176f9aa5ec More examples and tweaks
* Signal dispatch() method now uses own pid as default value
* SharedData now updates checksum cache on set()
2018-04-15 17:25:55 +02:00

34 lines
683 B
JSON

{
"name": "noccylabs/ipc",
"description": "A complete set of IPC facilities",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "cvagnetoft@gmail.com"
}
],
"keywords": [
"ipc",
"shm",
"msgqueue",
"signals"
],
"require": {},
"repositories": [
{
"type": "composer",
"url": "https://packages.noccylabs.info/composer/"
}
],
"autoload": {
"files": [
"src/signals.stub.php"
],
"psr-4": {
"NoccyLabs\\Ipc\\": "src/"
}
}
}