forked from lunr-php/lunr.locator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 848 Bytes
/
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
{
"name": "lunr/locator",
"description": "Lunr.Locator is an opinionated service locator.",
"keywords": ["servicelocator", "dependency injection"],
"homepage": "https://github.com/lunr-php/lunr.locator",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.1",
"lunr/halo": "dev-master",
"lunr/config": "dev-master",
"psr/container": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": ">=9.0 <9.6",
"ext-xdebug": "~3.1"
},
"config": {
"optimize-autoloader": true
},
"provide": {
"psr/container-implementation": "~2.0.0"
},
"autoload": {
"psr-4": {
"Lunr\\": "src/Lunr/"
}
},
"autoload-dev": {
"psr-4": {
"LunrTest\\": "tests/statics/LunrTest/"
}
}
}