-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
51 lines (51 loc) · 1.35 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
{
"name": "tina4stack/tina4cms",
"description": "Tina4 CMS Module",
"license": "MIT",
"classmap": [
"src/*"
],
"autoload": {
"files": [
"loadModule.php"
],
"psr-4": {
"": [
"src/",
"src/app/",
"src/orm/",
"src/routes/"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"tina4stack/tina4php": "^2.0",
"ext-json": "*",
"bissolli/php-css-js-minifier": "^1.1"
},
"scripts": {
"tina4": "tina4",
"phplint": "vendor/bin/phplint",
"tina4service": "tina4service",
"test": "@tina4 tests:run",
"initialize": "@tina4 initialize:run",
"start": "@tina4 webservice:run",
"start-service": "@tina4service",
"lint": "@phplint --exclude=vendor",
"phpmetrics": "./vendor/bin/phpmetrics --report-html=phpmetrics ./src"
},
"config": {
"process-timeout": 0
},
"require-dev": {
"phpmailer/phpmailer": "^6.5",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9",
"overtrue/phplint": "^2.0",
"tina4stack/tina4php-sqlite3": "^2.0",
"phpmetrics/phpmetrics": "^2.8",
"tina4stack/tina4php-firebird": "^2.0"
}
}