forked from softberg/quantum-php-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.91 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "quantum/framework",
"description": "The Quantum PHP Framework",
"keywords": [
"framework",
"php",
"quantum"
],
"license": "MIT",
"homepage": "https://quantumphp.io",
"support": {
"issues": "https://github.com/softberg/quantum-core/issues",
"source": "https://github.com/softberg/quantum-core"
},
"authors": [
{
"name": "Arman Ag",
"email": "arman.ag@softberg.org"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-pdo": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-fileinfo": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"j4mie/paris": "^1.5",
"firebase/php-jwt": "^6.0 || ^7.0",
"gumlet/php-image-resize": "^2.0",
"symfony/var-dumper": "^5.4",
"symfony/var-exporter": "^5.2",
"symfony/console": "^5.4",
"vlucas/phpdotenv": "^5.0",
"dflydev/dot-access-data": "^3.0",
"php-debugbar/php-debugbar": "^1.8",
"phpmailer/phpmailer": "^6.0",
"twig/twig": "^3.0",
"php-curl-class/php-curl-class": "^11.0",
"psr/log": "^1.1",
"rakibtg/sleekdb": "^2.13",
"swagger-api/swagger-ui": "^4.14",
"zircote/swagger-php": "~4.4",
"psr/simple-cache": "^1.0",
"vaibhavpandeyvpz/phemail": "^1.1",
"doctrine/annotations": "^2.0",
"voku/html-min": "^4.5",
"league/commonmark": "^2.0",
"ezyang/htmlpurifier": "^4.18",
"povils/figlet": "^0.1.0",
"ramsey/uuid": "^4.2",
"dragonmantank/cron-expression": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4",
"mikey179/vfsstream": "^1.6",
"rector/rector": "^2.3",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.92"
},
"suggest": {
"ext-dom": "Required for XML/HTML processing",
"ext-zip": "Required for ZIP file handling",
"ext-memcached": "Required for Memcached support",
"ext-redis": "Required for Redis support"
},
"autoload": {
"psr-4": {
"Quantum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Quantum\\Tests\\": "tests/"
}
},
"scripts": {
"cs:check": "vendor/bin/php-cs-fixer check",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"rector:check": "vendor/bin/rector process --dry-run",
"rector:fix": "vendor/bin/rector process",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=-1 --error-format=github",
"test": "vendor/bin/phpunit --stderr --testdox --coverage-clover coverage.xml"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"audit": {
"ignore": [
"CVE-2025-45769"
]
}
}
}