-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.08 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
{
"name": "chemem/asyncify",
"description": "A package that runs synchronous PHP functions asynchronously.",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Lochemem Bruno Michael",
"email": "lochbm@live.com",
"homepage": "https://chemem.site"
}
],
"require": {
"php": ">=7.2",
"chemem/bingo-functional": "~2",
"react/child-process": "~0",
"react/promise": "~2"
},
"require-dev": {
"ergebnis/composer-normalize": "~2",
"friendsofphp/php-cs-fixer": "~2 || ~3",
"phpunit/phpunit": "~8 || ~9",
"react/async": "~3 || ~4"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Chemem\\Asyncify\\": "src/"
},
"files": [
"src/index.php"
]
},
"autoload-dev": {
"psr-4": {
"Chemem\\Asyncify\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"cs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose --allow-risky=yes",
"test": "phpunit -c phpunit.xml.dist"
}
}