-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 865 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 865 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "php-ds/php-ds",
"license": "MIT",
"description": "Specialized data structures as alternatives to the PHP array",
"keywords": ["php", "ds", "data structures", "polyfill"],
"authors": [
{
"name": "Rudi Theunissen",
"email": "rudolf.theunissen@gmail.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"php-ds/tests": "@dev",
"phpunit/phpunit": "^11.0"
},
"provide": {
"ext-ds": "2.0.0"
},
"suggest": {
"ext-ds": "to improve performance and reduce memory usage"
},
"repositories": [
{
"type": "path",
"url": "../tests"
}
],
"autoload": {
"psr-4": {
"Ds\\": "src"
},
"files": [
"src/functions.php"
]
}
}