-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.59 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.59 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "maniaba/codeigniter4-sse",
"description": "Redis and Mercure Server-Sent Events for CodeIgniter 4",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"eventsource",
"mercure",
"redis",
"server-sent-events",
"sse"
],
"authors": [
{
"name": "Amel Junuzović",
"email": "maniaba@outlook.com",
"homepage": "https://github.com/maniaba",
"role": "Developer"
}
],
"homepage": "https://github.com/maniaba/codeigniter4-sse",
"support": {
"issues": "https://github.com/maniaba/codeigniter4-sse/issues",
"source": "https://github.com/maniaba/codeigniter4-sse"
},
"suggest": {
"codeigniter4/shield": "Required when using ShieldUserResolver for CodeIgniter Shield authentication.",
"ext-curl": "Required when using the built-in Mercure HTTP publisher."
},
"require": {
"php": "^8.2",
"ext-json": "*",
"codeigniter4/framework": "^4.7"
},
"require-dev": {
"codeigniter/coding-standard": "^1.5",
"nexusphp/cs-config": "^3.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"rector/rector": "^2.0"
},
"autoload": {
"files": [
"src/Helpers/sse_helper.php"
],
"psr-4": {
"Maniaba\\CodeIgniterSse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Support\\Tests\\": "tests/_support/"
}
},
"scripts": {
"analyze": [
"Composer\\Config::disableProcessTimeout",
"@phpstan",
"@rector"
],
"check-composer": "composer validate --strict",
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"ci": [
"Composer\\Config::disableProcessTimeout",
"@check-composer",
"@cs",
"composer audit",
"@analyze",
"@test",
"@test-browser"
],
"phpstan": "phpstan analyze --configuration=phpstan.neon.dist",
"rector": "rector process --dry-run",
"rector-fix": "rector process",
"style": "@cs-fix",
"test": "phpunit --configuration=phpunit.xml.dist --no-coverage",
"test-browser": "node --test tests/Browser/*.test.mjs"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}