-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
90 lines (82 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "flobee/spss",
"description": "SPSS is a php-based implementation of IBM SPSS Statistics Standard. (Read/write SPSS, PSPP .sav files)",
"keywords": [
"SPSS",
"IBM",
"PSPP",
"Statistics",
"DataSet",
"por",
"sav",
"reader",
"writer",
"cli",
"cli-app"
],
"license": "MIT",
"authors": [
{
"name": "Korniienko Vladyslav",
"email": "[email protected]",
"role": "origin"
}, {
"name": "Florian Blasel",
"email": "[email protected]",
"role": "Developer"
}, {
"name": "Sam Mousa",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"require": {
"php": ">=5.6",
"ext-bcmath": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phing/phing": "^2",
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0 || ^9",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SPSS\\": "src/"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"SPSS\\Tests\\": "tests/"
}
},
"suggest-dev": {
"phpstan/phpstan": "Static code analysis to improve the app design and to avoid bugs (^0.12) PHP > 7.2",
"ergebnis/phpstan-rules": "Optional/ advanced setups for phpstan (*) PHP > 7.2",
"phpstan/phpstan-strict-rules": "Optional/ advanced setups for phpstan (*) PHP > 7.2",
"thecodingmachine/phpstan-strict-rules": "Optional/ advanced setups for phpstan (*) PHP > 7.2"
},
"scripts": {
"lint": "rector process src && php-cs-fixer fix -v",
"test:lint": "vendor/bin/php-cs-fixer fix -v --dry-run && rector process src --dry-run",
"test:types": "vendor/bin/phpstan analyse -c tests/phpstan.neon.dist --ansi --memory-limit=0",
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml --no-coverage",
"test": [
"@test:unit"
],
"test:sca": "vendor/bin/phpstan analyse -c tests/phpstan.neon.dist --ansi --memory-limit=0",
"test:cs": "vendor/bin/phpcs -n --standard=misc/coding/Mumsys ./src ./tests/src",
"all": "./phing all",
"sca": "./phing sca"
}
}