-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.27 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.27 KB
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
{
"name": "jsarray/jsarray",
"description": "JavaScript-accurate Array wrapper for PHP with immutable operations",
"type": "library",
"keywords": [
"array",
"javascript",
"immutable",
"functional",
"collection"
],
"license": "MIT",
"homepage": "https://github.com/omer73364/jsarray",
"support": {
"issues": "https://github.com/omer73364/jsarray/issues",
"source": "https://github.com/omer73364/jsarray"
},
"authors": [
{
"name": "JsArray Contributors",
"email": "contributors@jsarray.dev"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"vimeo/psalm": "^5.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"JsArray\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsArray\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "phpunit ./tests",
"test:coverage": "phpunit --coverage-html coverage",
"psalm": "psalm",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
}
}