-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "wyrihaximus/react-simple-orm",
"description": "EXPERIMENTAL: Package to see how feasible a simple ORM in ReactPHP is",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]",
"homepage": "https://www.wyrihaximus.net/"
}
],
"require": {
"php": "^8.2",
"eventsauce/object-hydrator": "^1.4",
"latitude/latitude": "^4.1",
"ramsey/uuid": "^4.2.3",
"react/event-loop": "^1.3",
"react/promise": "^3.1",
"react/stream": "^1.1",
"reactivex/rxphp": "^2.0.12",
"roave/better-reflection": "^6",
"thecodingmachine/safe": "^2",
"voryx/pgasync": "^2.0",
"wyrihaximus/constants": "^1.5",
"wyrihaximus/doctrine-annotation-autoloader": "^1.0",
"wyrihaximus/react-event-loop-rx-scheduler-hook-up": "^0.1.1"
},
"require-dev": {
"robmorgan/phinx": "^0.12.11",
"symfony/yaml": "^5.4 || ^7.0",
"vlucas/phpdotenv": "^5.4",
"wyrihaximus/async-test-utilities": "^8.0.1"
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\SimpleORM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\SimpleORM\\": "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.13"
},
"sort-packages": true
},
"extra": {
"unused": [
"react/dns",
"react/event-loop",
"react/stream"
]
},
"scripts": {
"post-install-cmd": [
"composer normalize",
"composer update --lock --no-scripts"
],
"post-update-cmd": [
"composer normalize",
"composer update --lock --no-scripts"
]
}
}