-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
60 lines (60 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "soyuka/esql",
"description": "PHP Extended Structured Query Language",
"type": "library",
"require": {
"phpmyadmin/sql-parser": "^5.4",
"jms/parser-lib": "^1.0",
"symfony/dependency-injection": "^6.0"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/config": "^5.2",
"friendsofphp/php-cs-fixer": "^3.3",
"vimeo/psalm": "^4.3",
"symfony/phpunit-bridge": "^5.2",
"hautelook/alice-bundle": "^2.8",
"symfony/http-client": "^5.2",
"symfony/browser-kit": "^5.2",
"phpspec/prophecy-phpunit": "^2.0",
"api-platform/core": "dev-fix/jsonld-property-metadata-iris",
"doctrine/orm": "^2.8",
"jane-php/automapper": "^7.2",
"symfony/serializer": "^5.2",
"symfony/uid": "^5.2",
"jane-php/automapper-bundle": "^7.2",
"rector/rector": "^0.12.21",
"symfony/profiler-pack": "^1.0"
},
"suggest": {
"doctrine/orm": "To use doctrine metadata.",
"api-platform/core": "To use the API Platform bridge.",
"phpdocumentor/reflection-docblock": "To support extracting metadata from PHPDoc.",
"jane-php/automapper": "To use JanePHP for automapping.",
"symfony/serializer": "To use Symfony for automapping."
},
"license": "MIT",
"authors": [
{
"name": "soyuka",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Soyuka\\ESQL\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Soyuka\\ESQL\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../../forks/core2"
}
]
}