-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.29 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"name": "yjmorales/php-core",
"license": "MIT",
"type": "library",
"description": "Reusable PHP core library for building modular and scalable web applications. Provides foundational components like queue handling, mailing, logging, Redis, and Twig templating.",
"keywords": ["php", "core", "library", "web", "modular", "foundation", "symfony", "sendgrid", "twig", "redis", "pheanstalk"],
"homepage": "https://github.com/yjmorales/php-core",
"support": {
"email": "yjmorales86@gmail.com",
"issues": "https://github.com/yjmorales/php-core/issues",
"source": "https://github.com/yjmorales/php-core"
},
"authors": [
{
"name": "Yenier Jimenez",
"email": "yjmorales86@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Common\\": "src/"
}
},
"require": {
"php": ">=8.3",
"ext-bcmath": "^8.3",
"ext-json": "*",
"illuminate/support": "^12.21",
"pda/pheanstalk": "^7.1",
"predis/predis": "^3.2",
"sendgrid/sendgrid": "^8.1",
"symfony/mailer": "^7.3",
"symfony/monolog-bundle": "^3.10",
"symfony/sendgrid-mailer": "^7.3",
"symfony/twig-bundle": "^7.3",
"twig/twig": "^3.21"
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "8.3.0"
},
"sort-packages": true
}
}