-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.63 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
91
{
"name": "unicorn-fail/array-object",
"type": "library",
"description": "PHP classes and interfaces to assist manipulating arrays",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mark Halliwell",
"email": "mark@unicorn.fail",
"homepage": "https://github.com/markhalliwell",
"role": "Lead Developer"
}
],
"support": {
"docs": "https://github.com/unicorn-fail/array-object/blob/HEAD/README.md",
"issues": "https://github.com/unicorn-fail/array-object/issues",
"rss": "https://github.com/unicorn-fail/array-object/releases.atom",
"source": "https://github.com/unicorn-fail/array-object"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"consistence/consistence": "^2.0",
"pnz/json-exception": "^1.0",
"symfony/polyfill-php80": "^1.22.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.82",
"phpunit/phpunit": "^8.5.15",
"sempro/phpunit-pretty-print": "^1.4.0",
"squizlabs/php_codesniffer": "^3.5.8",
"unleashedtech/php-coding-standard": "^2.7.0",
"vimeo/psalm": "^4.7.0"
},
"autoload": {
"psr-4": {
"UnicornFail\\ArrayObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UnicornFail\\ArrayObject\\Tests\\Unit\\": "tests/unit"
}
},
"archive": {
"exclude": [
"/.editorconfig",
"/.github",
"/.gitattributes",
"/.gitignore",
"/.scrutinizer.yml",
"/tests",
"/php*.dist",
"/psalm.xml"
]
},
"scripts": {
"fix": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "./scripts/phpunit --no-coverage --colors=always",
"phpunit-coverage": "./scripts/phpunit --colors=always",
"psalm": "vendor/bin/psalm --config=psalm.xml --no-cache --output-format=phpstorm --show-info=true --stats --threads=4",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
],
"test-coverage": [
"@phpcs",
"@phpstan",
"@psalm",
"@putenv XDEBUG_MODE=coverage",
"@phpunit-coverage"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"config": {
"platform": {
"php": "7.4.0"
},
"sort-packages": true
}
}