-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 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
{
"name": "tirreno/tirreno",
"type": "project",
"description": "User security analytics for mission-critical web applications",
"keywords": [
"tirreno",
"fraud-detection",
"audit-trail",
"analytics"
],
"license": "AGPL-3.0+",
"homepage": "https://www.tirreno.com",
"authors": [
{
"name": "Tirreno Technologies Sàrl",
"email": "[email protected]",
"homepage": "https://www.tirreno.com/"
}
],
"config": {
"platform": {
"php": "8"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=8.0",
"bcosca/fatfree-core": "3.9.0",
"phpmailer/phpmailer": "6.9.3",
"ruler/ruler": "0.4.0",
"matomo/device-detector": "^6.4.1"
},
"extra": {
"paas": {
"document-root": "/",
"index-document": "index.php",
"nginx-includes": ["nginx.conf"]
}
},
"require-dev": {
"squizlabs/php_codesniffer": "3.10.3",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"compile": [
"chmod 755 tmp",
"chmod 755 logs",
"chmod 640 composer.json",
"chmod 640 composer.lock",
"chmod -R 750 config"
]
}
}