-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 789 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 789 Bytes
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
{
"name": "vaened/php-delta-orchestrator",
"description": "Framework-agnostic partial update orchestration engine based on real deltas",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"delta",
"orchestrator",
"partial-update",
"patch",
"application-layer"
],
"authors": [
{
"name": "enea dhack",
"email": "enea.so@live.com"
}
],
"autoload": {
"files": [
"src/Rules/functions.php"
],
"psr-4": {
"Vaened\\DeltaOrchestrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vaened\\DeltaOrchestrator\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^11"
}
}