-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.4 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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
{
"name": "reiterus/microapi-secure",
"description": "MicroApi Secure is a small API engine based on MicroApi Core and Symfony packages.",
"keywords": ["api", "rest", "token", "jwt", "microapi", "secure", "engine", "symfony", "reiterus"],
"type": "project",
"version": "1.6.0",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Pavel Vasin",
"email": "reiterus@yandex.ru"
}
],
"prefer-stable": true,
"require": {
"php": "^8.1",
"symfony/config": "^6.2",
"symfony/http-kernel": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/routing": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/framework-bundle": "^6.2",
"symfony/browser-kit": "^6.2",
"symfony/yaml": "^6.2",
"symfony/dotenv": "^6.2",
"symfony/runtime": "^6.2",
"symfony/security-bundle": "^6.2",
"firebase/php-jwt": "^6.4"
},
"autoload": {
"psr-4": {
"MicroApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MicroApi\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.16"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}