-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 888 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
{
"name": "nabeghe/traituctor",
"description": "Invoking a pseudo constructor for each trait from within the main constructor.",
"keywords": [
"trait", "trait helper", "trait constructor", "constructor", "construct", "pseudo constructor", "reflection",
"library", "helper", "support"
],
"type": "library",
"version": "0.1.1",
"homepage": "https://github.com/nabeghe/traituctor",
"license": "MIT",
"autoload": {
"psr-4": {
"Nabeghe\\Traituctor\\": "src/"
}
},
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "hadicoder@gmail.com",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"nabeghe/reflecty": "*"
},
"require-dev": {
"phpunit/phpunit": "9.6"
}
}