-
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.32 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.32 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": "vortexphp/framework",
"description": "Lightweight PHP application stack (app/, config/, routes/, resources/views)",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-pdo": "*",
"justinrainbow/json-schema": "^6",
"psr/simple-cache": "^3.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"Vortex\\": "src/"
},
"files": [
"src/I18n/helpers.php",
"src/Routing/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Vortex\\Tests\\": "tests/"
}
},
"suggest": {
"ext-openssl": "SMTP STARTTLS / ssl:// (MAIL_ENCRYPTION tls or ssl)",
"ext-redis": "phpredis: Redis cache store (cache.stores.*) and optional Redis queue (queue.driver redis)",
"ext-memcached": "Memcached cache store (cache.stores.* driver memcached)"
},
"config": {
"sort-packages": true
},
"scripts": {
"install:prod": "@composer install --no-dev --optimize-autoloader",
"validate-project": "composer validate --no-check-publish",
"test": "phpunit"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.0"
}
}