-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 880 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
{
"name": "nmarniesse/phindexer",
"type": "library",
"description": "PHP data indexer",
"license": "MIT",
"authors": [{ "name": "Nicolas Marniesse", "email": "nicolas.marniesse@gmail.com"}],
"require": {
"php": ">=7.1",
"ext-json": "*",
"psr/log": "~1.0",
"ramsey/uuid": "^3.8",
"symfony/validator": "^4.2",
"doctrine/inflector": "^1.3"
},
"require-dev": {
"atoum/atoum" : "*",
"symfony/console": "^4.2",
"fzaninotto/faker": "^1.8"
},
"autoload": {
"psr-4": {
"NMarniesse\\Phindexer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NMarniesse\\Phindexer\\Test\\Unit\\": "tests/Unit",
"NMarniesse\\Phindexer\\Test\\Performance\\": "tests/Performance"
}
},
"minimum-stability": "stable"
}