-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
60 lines (60 loc) · 1.22 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
{
"name": "zakirullin/mess",
"type": "library",
"description": "Convenient array-related routine & better type casting",
"keywords": [
"array",
"type",
"assert",
"cast",
"mess",
"language",
"php",
"json"
],
"homepage": "https://github.com/zakirullin/mess",
"license": "MIT",
"authors": [
{
"name": "Artem Zakirullin",
"email": "artemzr@gmail.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"require": {
"php": "^7.2|^8.0"
},
"require-dev": {
"composer/xdebug-handler": "^1.4|2.0",
"infection/infection": "^0.15|^0.20|^0.27",
"phpunit/phpunit": "^8.0|^9.0",
"symfony/string": "^5.4.43",
"sanmai/pipeline": "5.2.1",
"vimeo/psalm": "4.16.1|5.*"
},
"autoload": {
"psr-4": {
"Zakirullin\\Mess\\": "src/",
"Zakirullin\\TypedAccessor\\": "src/"
},
"files": [
"src/functions.php"
]
},
"scripts": {
"test": [
"@php vendor/bin/phpunit --stderr --coverage-text"
],
"coverage": "phpunit --coverage-html=coverage"
},
"autoload-dev": {
"psr-4": {
"Zakirullin\\Mess\\Tests\\": "tests/unit/"
}
}
}