-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "atk4/data-spreadsheet",
"type": "library",
"description": "Agile Data - Addon Spreadsheet",
"keywords": ["framework", "orm", "query", "active record", "sql", "builder", "nosql", "mongodb", "mysql", "postgresql"],
"homepage": "https://github.com/atk4/data",
"license": "MIT",
"authors": [
{
"name": "Romans Malinovskis",
"email": "[email protected]",
"homepage": "https://nearly.guru/"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1.0",
"atk4/data": "1.4.*",
"phpmetrics/phpmetrics": "^2.4",
"phpoffice/phpspreadsheet": "^1.6"
},
"require-dev": {
"atk4/schema": "*",
"phpunit/phpunit": "<6",
"phpunit/dbunit": ">=1.2",
"phpunit/phpcov": "*",
"codeclimate/php-test-reporter": "*",
"dompdf/dompdf": "^0.8.3",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*"
},
"autoload": {
"psr-4": {
"atk4\\data\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"atk4\\data\\tests\\":"tests/",
"atk4\\data\\tests\\smbo\\":["tests/smbo","tests/smbo/lib"]
}
},
"scripts": {
"fix": "php-cs-fixer fix",
"stan": "phpstan analyse src demo",
"stan1": "phpstan analyse --level 1 src demo",
"stan2": "phpstan analyse --level 2 src demo",
"stan3": "phpstan analyse --level 3 src demo",
"stan4": "phpstan analyse --level 4 src demo",
"stan5": "phpstan analyse --level 5 src demo",
"stan6": "phpstan analyse --level 6 src demo",
"stan7": "phpstan analyse --level 7 src demo",
"metrics": [
"mkdir -p ./build/logs",
"mkdir -p ./build/report",
"mv ./build/report ./build/report_$(date +\"%Y.%m.%d_%H%M%S\")",
"phpmetrics --config=./.phpmetrics.json .",
"firefox ./build/report/phpmetrics.html/index.html"
],
"metrics-clear": [
"rm -rf ./build/report_*",
"rm -rf ./build/report"
]
}
}