-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 1.9 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
{
"name": "lefuturiste/slim3-template-api",
"description": "Slim3 template, ready to start. This is Api version of slim3 template with more lightly template.",
"type": "project",
"authors": [
{
"name": "Le_Futuriste",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"App\\": "App/",
"Test\\": "test/"
}
},
"scripts": {
"init_app": "vendor/bin/phinx migrate",
"migrate": "vendor/bin/phinx migrate",
"start": "php -S 127.0.0.1:8000 -t public",
"test": "vendor/bin/phpunit --configuration phpunit.xml"
},
"license": "MIT",
"require": {
"ext-json": "*",
"slim/slim": "4.*",
"hassankhan/config": "^0.10.0",
"guzzlehttp/guzzle": "^6.3",
"jimmiw/php-time-ago": "^2.0",
"vlucas/phpdotenv": "^5.4",
"simplon/mysql": "^2.2",
"monolog/monolog": "^1.23",
"symfony/translation": "^3.3",
"lefuturiste/slim-whoops": "^0.6.2",
"lefuturiste/monolog-discord-handler": "^0.1.2",
"tracy/tracy": "^2.4",
"php-di/php-di": "^6.3.0",
"doctrine/cache": "^1.7",
"webonyx/graphql-php": "~14.11",
"illuminate/database": "~8.83",
"robmorgan/phinx": "0.11.4",
"fakerphp/faker": "^1.14",
"sebastianwalker/paysafecard-php-api": "^1.0",
"lefuturiste/validator": "^1.0",
"respect/validation": "^1.1",
"dflydev/fig-cookies": "^1.0",
"firebase/php-jwt": "^5.0",
"stripe/stripe-php": "^7.14",
"akrabat/ip-address-middleware": "^2.0",
"paypal/rest-api-sdk-php": "^1.13",
"staileu/php-sdk": "^0.0.3",
"nopjmp/discord-webhooks": "^0.3.1",
"predis/predis": "^1.1",
"sentry/sdk": "3.1.0",
"lefuturiste/jobatator-php": "^0.7",
"slim/psr7": "^1.5",
"slim/http": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.4",
"zalas/phpunit-injector": "^2.1.0"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}