-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.17 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": "makinacorpus/api-generator",
"description": "Generates client side API interface (TypeScript for example) code from your PHP classes.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Makina Corpus",
"homepage": "https://makina-corpus.com/"
},
{
"name": "Pierre RINEAU",
"email" : "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"psr/log": "^2.0|^3.0",
"symfony/uid": "^7.0"
},
"require-dev": {
"doctrine/orm": "^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.2",
"ramsey/uuid": "^4.7",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/yaml": "^7.0"
},
"autoload": {
"psr-4": {
"MakinaCorpus\\ApiGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MakinaCorpus\\ApiGenerator\\Tests\\": "tests/"
}
}
}