-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.78 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
{
"name": "exeque/remix",
"description": "A powerful and user-friendly library that provides discreet comparators and mutators, allowing you to create reusable transformers for data transformations.",
"type": "library",
"keywords": [
"data",
"transform",
"transformer",
"mutator",
"comparator",
"remix",
"composition",
"functional",
"arrays",
"objects",
"strings",
"numbers"
],
"require": {
"php": "^8.1",
"jawira/case-converter": "^3.5",
"symfony/polyfill-mbstring": "^1.27",
"martinlindhe/php-mb-helpers": "^0.1.7",
"webmozart/assert": "^1.11",
"psr/http-message": "^2.0|^1.0",
"psr/log": "^3.0|^2.0",
"adbario/php-dot-notation": "^3.3"
},
"require-dev": {
"laravel/pint": "^1.10",
"pestphp/pest": "^2.8",
"mockery/mockery": "^1.6",
"spatie/php-structure-discoverer": "^1.1",
"pestphp/pest-plugin-faker": "^2.0",
"ext-openssl": "*",
"symfony/var-dumper": "^6.3",
"infection/infection": "^0.27.0",
"code-lts/doctum": "^5.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"ExeQue\\Remix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Morten Harders",
"email": "mmh@harders-it.dk"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.x.x-dev"
}
}
}