-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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": "devfrey/framework-x-eventsource",
"description": "EventSource / Server-Sent Events for Framework X.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jeffrey Angenent",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0",
"clue/framework-x": "dev-main",
"react/event-loop": "^1.0",
"react/http": "^1.0",
"react/stream": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^9.5",
"slevomat/coding-standard": "^7.1",
"squizlabs/php_codesniffer": "^3.6"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/clue-access/framework-x"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Devfrey\\FrameworkX\\EventSource\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}