This repository was archived by the owner on Dec 9, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.14 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.14 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "contributte/model",
"description": "View-model and model tools for Nette Framework.",
"keywords": [
"nette",
"model",
"view-model",
"values",
"collections"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/model",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": "^7.2",
"nette/utils": "~3.0.1"
},
"require-dev": {
"ninjify/nunjuck": "^0.3",
"ninjify/qa": "^0.10",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules": "^0.11",
"phpstan/phpstan-nette": "^0.11",
"phpstan/phpstan-shim": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11"
},
"suggest": {
"ext-intl": "Email domain normalization"
},
"autoload": {
"psr-4": {
"Contributte\\Model\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}