-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.47 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
{
"name": "wyrihaximus/react-cron",
"description": "⏱️ Cronlike scheduler running inside the ReactPHP Event Loop",
"license": "MIT",
"require": {
"php": "^8.2",
"dragonmantank/cron-expression": "^3.3.3",
"evenement/evenement": "^3.0",
"react/async": "^4.2",
"react/event-loop": "^1.5",
"react/promise": "^3.1",
"thecodingmachine/safe": "^2.4",
"wyrihaximus/constants": "^1.6",
"wyrihaximus/react-mutex": "^3.2",
"wyrihaximus/react-mutex-contracts": "^2.2"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^8.0.1"
},
"conflict": {
"azjezz/psl": "<2"
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Tests\\React\\Cron\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.2.99"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}