-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 862 Bytes
/
composer.json
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
{
"name": "nabeghe/buildify",
"description": "Buildify improves PHP OOP with enhanced getter and setter functionality inspired by Builder and Fluent Patterns.",
"keywords": [
"getter", "setter", "get", "set", "fluent", "fluent interface",
"builder", "builder design pattern", "design pattern", "oop", "object", "class", "trait",
"library", "helper", "support"
],
"type": "library",
"version": "1.0.2",
"homepage": "https://github.com/nabeghe/buildify-php",
"license": "MIT",
"autoload": {
"psr-4": {
"Nabeghe\\Buildify\\": "src/"
}
},
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "[email protected]",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.6"
}
}