-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 2.72 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 2.72 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
{
"name": "tina4stack/tina4php",
"description": "Tina4 for PHP \u2014 native PHP conventions and shared Tina4 contracts",
"license": "MIT",
"autoload": {
"psr-4": {
"Tina4\\": "Tina4/",
"Tina4\\Cache\\": "Tina4/Cache/",
"Tina4\\Database\\": "Tina4/Database/",
"Tina4\\Graph\\": "Tina4/Graph/",
"Tina4\\Middleware\\": "Tina4/Middleware/",
"Tina4\\Queue\\": "Tina4/Queue/",
"Tina4\\Session\\": "Tina4/Session/"
},
"files": [
"Tina4/Bootstrap/Constants.php",
"Tina4/Bootstrap/MCP.php",
"Tina4/Middleware/CacheFunctions.php",
"Tina4/Bootstrap/WebSocketBackplane.php",
"Tina4/Bootstrap/DocStore.php"
]
},
"require": {
"php": ">=8.2",
"ext-json": "*"
},
"scripts": {
"serve": "@php bin/tina4php serve",
"start": "@php bin/tina4php serve",
"test": "./vendor/bin/phpunit tests --color",
"lint": "@php bin/tina4php lint"
},
"config": {
"process-timeout": 0
},
"require-dev": {
"phpunit/phpunit": "^10 || ^11",
"mongodb/mongodb": "^2.3",
"cebe/php-openapi": "^1.8"
},
"bin": [
"bin/tina4php"
],
"suggest": {
"ext-openssl": "Enables the RS256 JWT algorithm, MQTT over TLS (mqtts://), and outbound HTTPS from Tina4\\Api (PHP's https:// stream wrapper is registered by this extension). JWT signing does NOT need it: HS256/HS384/HS512 use the built-in hash_hmac",
"tina4stack/ultipa": "Ultipa graph driver — loaded only for ultipa:// connections through the Tina4\\Graph layer (GraphDatabase::create). Needs ext-grpc",
"laudis/neo4j-php-client": "Bolt graph driver — loaded only for neo4j://, memgraph:// and bolt:// connections through the Tina4\\Graph layer (GraphDatabase::create). Pure PHP over sockets; serves both Neo4j and Memgraph",
"triagens/arangodb": "ArangoDB graph driver — loaded only for arango:// connections through the Tina4\\Graph layer (GraphDatabase::create). Pure PHP over HTTP",
"ext-sqlite3": "Required for SQLite3 database support",
"ext-pdo": "Required for MySQL/PostgreSQL/MSSQL database support",
"ext-pgsql": "Required for PostgreSQL database support",
"ext-mongodb": "Required for the MongoDB queue/session/doc-store backends",
"mongodb/mongodb": "High-level MongoDB library used by the Mongo queue/session/doc-store backends",
"ext-curl": "Required for external API calls",
"ext-fileinfo": "Required for file type detection",
"ext-zip": "Required for ZIP file handling"
}
}