-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "recruiterphp/array",
"description": "Provides array_* functions you wish were part of PHP",
"license": "MIT",
"authors": [
{
"name": "Giorgio Sironi",
"email": "work@giorgiosironi.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/recruiterphp/array/graphs/contributors"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.86",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.3",
"rector/rector": "^2.1"
},
"replace": {
"onebip/onebip-array": "self.version"
},
"autoload": {
"psr-4": {
"Recruiter\\Array\\": "src/"
},
"files": [
"src/array.php",
"src/aliases.php"
]
},
"autoload-dev": {
"psr-4": {
"Recruiter\\Array\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}