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
70 lines (70 loc) · 1.99 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"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.3",
"ext-pdo": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-fileinfo": "*",
"ext-openssl": "*",
"ext-dom": "*",
"ext-zip": "*",
"ext-bcmath": "*",
"j4mie/paris": "^1.5",
"firebase/php-jwt": "^6.0",
"gumlet/php-image-resize": "^2.0",
"symfony/var-dumper": "^4.2",
"symfony/var-exporter": "^5.2",
"symfony/console": "^4.3",
"vlucas/phpdotenv": "^4.2",
"dflydev/dot-access-data": "^3.0",
"maximebf/debugbar": "^1.15",
"phpmailer/phpmailer": "^6.0",
"twig/twig": "^2.7",
"php-curl-class/php-curl-class": "^9.0",
"psr/log": "^1.1",
"rakibtg/sleekdb": "^2.13",
"laminas/laminas-text": "^2.9",
"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"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"Quantum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Quantum\\Tests\\": "tests/unit/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --stderr --coverage-clover coverage.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}