-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 811 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 811 Bytes
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
{
"name": "polyfills/array-find",
"description": "PHP: Provides a user-land polyfill for `array_find`, `array_find_key`, `array_any` and `array_all` functions added in PHP 8.4.",
"type": "library",
"homepage": "https://php.watch/versions/8.4/array_find-array_find_key-array_any-array_all",
"keywords": ["php84", "phpwatch", "polyfills", "polyfill", "compatibility", "compat", "shim"],
"require": {
"php": "^7.0 || ^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.3|^6.0"
},
"conflict": {
"php": "^8.4"
},
"license": "MIT",
"autoload": {
"files": [
"src/array_find.php"
]
},
"authors": [
{
"name": "Ayesh Karunaratne",
"email": "ayesh@aye.sh"
}
]
}