-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "coddin/data-tables",
"description": "DataTables backend package to easily setup a dynamic frontend",
"type": "library",
"require": {
"php": "^8.0"
},
"version": "0.3.3",
"require-dev": {
"laravel/framework": "^8.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"dg/bypass-finals": "^1.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Coddin\\DataTables\\": "src/"
}
},
"minimum-stability": "stable",
"scripts": {
"phpcs": "phpcs --standard=./phpcs_codestyle.xml -n src tests",
"phpcs-fix": "phpcbf --standard=./phpcs_codestyle.xml -n src tests",
"phpstan": "phpstan analyse --memory-limit=2G",
"phpunit": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpunitwcov": "XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-html reports/ --coverage-clover coverage/clover.xml",
"phpcoverage": "coverage-check coverage/clover.xml 100",
"checkup": [
"@phpcs",
"@phpstan"
],
"coveragecheck": [
"@phpunitwcov",
"@phpcoverage"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}