forked from Athari/YaLinqo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.05 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
{
"name": "athari/yalinqo",
"description": "YaLinqo, a LINQ-to-objects library for PHP",
"license": "BSD-2-Clause",
"homepage": "http://athari.github.io/YaLinqo",
"keywords": ["linq", "linqo", "query", "statistic"],
"authors": [
{
"name": "Alexander Prokhorov",
"homepage": "https://github.com/Athari/"
}
],
"support": {
"issues": "https://github.com/Athari/YaLinqo/issues",
"source": "https://github.com/Athari/YaLinqo",
"docs": "http://athari.github.io/YaLinqo"
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12.17",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"YaLinqo\\": "src/"
},
"files": [
"src/Linq.php"
]
},
"autoload-dev": {
"psr-4": {
"YaLinqo\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}