-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
143 lines (143 loc) · 4.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "kejawenlab/semartapiskeleton",
"type": "project",
"description": "Blazing fast application skeleton for building admin and api based application",
"keywords": ["semartapiskeleton", "semart api skeleton", "kejawenlab"],
"license": "MIT",
"homepage": "https://github.com/KejawenLab/SemartApiSkeleton",
"support": {
"issues": "https://github.com/KejawenLab/SemartApiSkeleton/issues",
"source": "https://github.com/KejawenLab/SemartApiSkeleton"
},
"authors": [
{
"name": "Muhamad Surya Iksanudin",
"email": "surya.iksanudin@gmail.com"
}
],
"require": {
"php": "^8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"composer/composer": "^2.8",
"ad3n/cron": "^1.0",
"damienharper/auditor-bundle": "^6.2",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^4.2",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3.3",
"friendsofphp/proxy-manager-lts": "^1.0",
"friendsofsymfony/rest-bundle": "^3.8",
"lexik/jwt-authentication-bundle": "^3.1",
"nelmio/api-doc-bundle": "^4.36",
"nelmio/cors-bundle": "^2.5",
"phpdocumentor/reflection-docblock": "^5.6",
"ramsey/uuid-doctrine": "^2.1",
"runtime/swoole": "^0.4",
"snc/redis-bundle": "^4.8",
"stof/doctrine-extensions-bundle": "^1.13",
"symfony/amqp-messenger": "^7.2",
"symfony/asset": "^7.2",
"symfony/console": "^7.2",
"symfony/doctrine-messenger": "^7.2",
"symfony/dotenv": "^7.2",
"symfony/flex": "^2.4",
"symfony/form": "^7.2",
"symfony/framework-bundle": "^7.2",
"symfony/http-client": "^7.2",
"symfony/lock": "^7.2",
"symfony/messenger": "^7.2",
"symfony/mime": "^7.2",
"symfony/monolog-bundle": "^3.10",
"symfony/property-access": "^7.2",
"symfony/property-info": "^7.2",
"symfony/rate-limiter": "^7.2",
"symfony/runtime": "^7.2",
"symfony/serializer": "^7.2",
"symfony/string": "^7.2",
"symfony/twig-bundle": "^7.2",
"symfony/validator": "^7.2",
"symfony/web-link": "^7.2",
"symfony/yaml": "^7.2",
"twig/extra-bundle": "^3.19",
"twig/twig": "^3.19",
"vich/uploader-bundle": "^2.5"
},
"require-dev": {
"dg/bypass-finals": "^1.9",
"doctrine/doctrine-fixtures-bundle": "^4.0",
"friendsofphp/php-cs-fixer": "^3.68",
"nunomaduro/phpinsights": "^2.12",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"rector/rector": "^2.0",
"swoole/ide-helper": "^6.0",
"symfony/browser-kit": "^7.2",
"symfony/css-selector": "^7.2",
"symfony/debug-bundle": "^7.2",
"symfony/maker-bundle": "^1.62",
"symfony/phpunit-bridge": "^7.2",
"symfony/stopwatch": "^7.2",
"symfony/web-profiler-bundle": "^7.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"KejawenLab\\ApiSkeleton\\": "lib/",
"KejawenLab\\Application\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"KejawenLab\\ApiSkeleton\\Tests\\": "tests/lib",
"KejawenLab\\Application\\Tests\\": "tests/app",
"KejawenLab\\Stub\\": "tests/stub"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^7.2"
}
}
}