-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 2.05 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
{
"name": "smoren/array-view",
"description": "Create array views for easy data manipulation, select elements using Python-like slice notation, enable efficient selection of elements using index lists and boolean masks.",
"keywords": [
"array-view",
"slice",
"slicing",
"array",
"array-index",
"indexing",
"negative-indexes",
"negative",
"range",
"selector",
"collection",
"collections",
"python-like",
"array-viewer",
"view",
"data-view"
],
"license": "MIT",
"authors": [
{
"name": "Smoren",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"codeception/codeception": "^4.2.1",
"codeception/module-asserts": "^2.0",
"php-coveralls/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.8",
"phpdocumentor/phpdocumentor": "3.0.*"
},
"autoload": {
"psr-4": {
"Smoren\\ArrayView\\": "src",
"Smoren\\ArrayView\\Tests\\Unit\\": "tests/unit"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"symfony/flex": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"test-init": ["./vendor/bin/codecept build"],
"test-all": ["composer test-coverage", "composer codesniffer", "composer stan"],
"test": ["./vendor/bin/codecept run unit tests/unit"],
"test-coverage": ["./vendor/bin/codecept run unit tests/unit --coverage"],
"test-coverage-html": ["./vendor/bin/codecept run unit tests/unit --coverage-html"],
"test-coverage-xml": ["./vendor/bin/codecept run unit tests/unit --coverage-xml"],
"codesniffer": ["./vendor/bin/phpcs --ignore=vendor,tests --standard=tests/coding_standard.xml -s ."],
"stan": ["./vendor/bin/phpstan analyse -l 9 src"],
"phpdoc": [
"export COMPOSER_PROCESS_TIMEOUT=9000",
"vendor/bin/phpdoc --directory ./src --visibility public --target ./phpdoc --template default -v"
]
}
}