-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
94 lines (84 loc) · 2.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name" : "ipub/doctrine-crud",
"type" : "library",
"description" : "CRUD methods for Doctrine2 ORM",
"keywords" : [
"doctrine2",
"doctrine",
"crud",
"nette",
"ipub",
"framework",
"tools"
],
"homepage" : "https://github.com/iPublikuj/doctrine-crud",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"authors" : [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support" : {
"email" : "support@ipublikuj.eu",
"issues" : "https://github.com/iPublikuj/doctrine-crud/issues"
},
"extra" : {
"ipub" : {
"configuration" : {
"extension" : "IPub\\DoctrineCrud\\DI\\DoctrineCrudExtension"
}
}
},
"require" : {
"php" : ">=8.1.0",
"doctrine/orm": "^2.6",
"nette/bootstrap": "^3.2",
"nette/di": "^3.2",
"nette/utils": "^3.2||^4.0",
"phpdocumentor/reflection-docblock": "^5.2"
},
"require-dev" : {
"contributte/console": "^0.9",
"brianium/paratest": "^7.3",
"infection/infection": "^0.27",
"nettrine/cache": "^0.3",
"nettrine/orm": "^0.8",
"orisai/coding-standard": "^3.2",
"pds/skeleton": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-nette": "^1.2",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"tracy/tracy": "^2.9"
},
"autoload" : {
"psr-4" : {
"IPub\\DoctrineCrud\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"IPub\\DoctrineCrud\\Tests\\Cases\\Unit\\" : "tests/cases/unit",
"IPub\\DoctrineCrud\\Tests\\Fixtures\\Dummy\\": "tests/fixtures/dummy"
}
},
"config" : {
"sort-packages" : true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
}
}