-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.04 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "pi/notification",
"description": "Api base notification module via laminas and pi",
"license": "BSD-3-Clause",
"keywords": [
"Pi",
"Pi Engine",
"Laminas",
"Laminas MVC",
"Laminas Module",
"Psr",
"MultiTenant",
"SaaS"
],
"homepage": "https://piengine.org",
"authors": [
{
"name": "Hossein Azizabadi Farahani",
"email": "[email protected]"
},
{
"name": "Pi Team",
"homepage": "https://github.com/pi-engine/pi/graphs/contributors"
}
],
"extra": {
"laminas": {
"module": "Pi\\Notification"
}
},
"require": {
"php": "~8.3.0 || ~8.4.0"
},
"autoload": {
"psr-4": {
"Pi\\Notification\\": "src/"
}
},
"suggest": {
"ext-apc": "for opcode cache and system persistent data",
"ext-discount": "for Markdown text parsing",
"ext-intl": "for i18n features"
},
"config": {
"allow-plugins": {
"laminas/laminas-component-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}