-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 944 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
34
35
36
37
{
"name": "farhanianz/nette-model",
"type": "extension",
"description": "The missing Abstract Model in Nette framework without dependency (except nette) but with power, flexibility & features you would love to use so much.",
"keywords": [
"nette",
"nette-model",
"nette-database",
"nette-component",
"nette-extension"
],
"homepage": "https://github.com/farhanianz/nette-model/",
"license": "MIT",
"authors": [
{
"name": "Farhan Ishraaq",
"email": "dearfarhanianz@gmail.com",
"homepage": "https://github.com/farhanianz/nette-model/",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"nette/database": "^3.0",
"nette/utils": "^3.0",
"ext-json": "*"
},
"require-dev": {
"nette/tester": "^3.0"
},
"autoload": {
"psr-4": {
"farhanianz\\NetteModel\\": "src/"
}
},
"minimum-stability": "stable"
}