-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.26 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
{
"name": "maximaster/jaft",
"description": "league/fractal universal JSON:API transformer.",
"license": "MIT",
"require": {
"league/fractal": "^0.19.2",
"webmozart/assert": "^1.9.0"
},
"require-dev": {
"kahlan/kahlan": "^5.1",
"symfony/property-access": "^5.2",
"symfony/property-info": "^5.2",
"jawira/case-converter": "^3.4.0",
"phpdocumentor/reflection-docblock": "5.x-dev"
},
"suggest": {
"symfony/property-access": "For \\Maximaster\\Jaft\\DataExtractor\\PropertyAccessorDataExtractor",
"symfony/property-info": "For \\Maximaster\\Jaft\\SchemaRepository\\PropertyInfoSchemaRepository",
"jawira/case-converter": "For \\Maximaster\\Jaft\\CaseConverter\\JawiraCaseConverter",
"maximaster/atoa": "For \\Maximaster\\Jaft\\ObjectFormatter\\AtoaObjectFormatter"
},
"scripts": {
"test": "kahlan",
"check": "composer test"
},
"autoload": {
"psr-4": {
"Maximaster\\Jaft\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maximaster\\Jaft\\Spec\\Stub\\": "spec/Stub/"
}
},
"authors": [{"name": "Лавриненко Максим", "email": "[email protected]"}]
}