-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 961 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
{
"name": "idimsh/php-inotify-monitor",
"type": "library",
"description": "A wrapper library around PHP Inotify Extension and React PHP to monitor files/directories for 3 main events: Create, Modify, Delete",
"keywords": ["inotify", "react", "PHP", "monitor", "filesystem"],
"license": "MIT",
"authors": [
{
"name": "Abdulrahman Dimashki",
"email": "[email protected]"
}
],
"homepage": "https://github.com/idimsh/php-inotify-monitor",
"require": {
"php": ">=7.1",
"mkraemer/react-inotify": "1.1.0"
},
"require-dev": {
"phpunit/phpunit": ">= 7.0, < 8.0",
"squizlabs/php_codesniffer": "~3.2",
"vladahejda/phpunit-assert-exception": "dev-master"
},
"autoload": {
"psr-4": {
"Dimsh\\React\\Filesystem\\Monitor\\": "src"
}
},
"scripts": {
"test": [
"phpunit",
"phpcs -p src"
]
},
"scripts-descriptions": {
"test": "Run all tests and quality checks"
}
}