-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 1.96 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 1.96 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
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
{
"name": "doppar/framework",
"type": "package",
"description": "The Doppar Framework",
"license": "MIT",
"keywords": [
"framework",
"doppar"
],
"homepage": "https://doppar.com",
"support": {
"issues": "https://github.com/doppar/framework/issues",
"source": "https://github.com/doppar/framework"
},
"authors": [
{
"name": "Mahedi Hasan",
"email": "mahedy150101@gmail.com"
}
],
"require": {
"php": "^8.3",
"chillerlan/php-qrcode": "^5.0",
"dragonmantank/cron-expression": "^3.4",
"monolog/monolog": "^3.0",
"nesbot/carbon": "^3.8",
"paragonie/constant_time_encoding": "^3.0",
"phpmailer/phpmailer": "^6.9",
"psr/simple-cache": "^3.0",
"ramsey/collection": "^2.1",
"react/event-loop": "^1.6",
"spomky-labs/otphp": "^11.3",
"symfony/cache": "^7.4",
"symfony/console": "^7.4",
"symfony/process": "^7.4",
"symfony/var-dumper": "^7.4",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"Phaseolies\\": "src/Phaseolies/"
},
"files": [
"src/Phaseolies/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"suggest": {
"ext-apcu": "Needed to enable the APC-based caching layer.",
"ext-pdo": "Provides the core database abstraction required for all DB operations.",
"ext-pcntl": "Enables full functionality of the queue worker and support for console signal handling.",
"ext-redis": "Required for using Redis-backed cache.",
"symfony/cache": "Supplies the PSR-6 cache integration layer (version ^7.4)."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}