forked from SimonDevelop/array-organize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.03 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
{
"name": "simondevelop/array-organize",
"description": "Php library for easy sorting of data, generate html table and more.",
"type": "library",
"keywords": [
"array",
"sort",
"table",
"pagination"
],
"homepage": "https://github.com/SimonDevelop/array-organize",
"license": "MIT",
"authors": [
{
"name": "SimonDevelop",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SimonDevelop\\": "src/",
"SimonDevelop\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.1",
"phpunit/phpunit": "~6.5 || ~7.0",
"phpstan/phpstan": "^0.9.2"
},
"scripts": {
"phpcs": "phpcs -s",
"phpstan-src": "phpstan analyse -l 5 src",
"phpstan-tests": "phpstan analyse -l 5 tests",
"phpstan": [
"@phpstan-src",
"@phpstan-tests"
],
"phpunit": "phpunit --colors",
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
]
}
}