-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 1.01 KB
/
composer.json
File metadata and controls
27 lines (27 loc) · 1.01 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
{
"name": "taujor/cally",
"description": "Cally is a lightweight, immutable registry for storing and retrieving data or services in PHP. It provides a simple yet powerful way to manage configurations, dependencies, or any key-value pairs with support for immutability and PSR-11 compliance. Cally is ideal for any project where a full-fledged dependency injection container is unnecessary.",
"keywords": ["container", "registry", "immutable", "psr-11", "di", "php", "dependency injection"],
"type": "library",
"require": {
"php": "^8.1",
"psr/container": "^2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Taujor\\Cally\\": "src/"
}
},
"authors": [
{
"name": "taujor",
"email": "tauscherjordan933@gmail.com"
}
],
"support": {
"issues": "https://github.com/taujor/cally/issues",
"source": "https://github.com/taujor/cally"
},
"homepage": "https://github.com/taujor/cally"
}