-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
68 lines (68 loc) · 2.01 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
{
"name": "mdjaman/mdjaman-common",
"description": "Module that provides common functionality and library code for ZF2/ZF3 & Doctrine applications",
"type": "library",
"keywords": [
"zf2",
"zf3",
"laminas",
"zend",
"doctrine",
"module",
"common",
"abstract"
],
"authors": [
{
"name": "Marcel Djaman",
"email": "[email protected]",
"homepage": "https://github.com/mdjaman"
}
],
"homepage": "https://github.com/mdjaman/MdjamanCommon",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-ctype": "*",
"laminas/laminas-modulemanager": "2.*",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-form": "^3.1",
"laminas/laminas-inputfilter": "2.*",
"laminas/laminas-authentication": "2.*",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-stdlib": "^3.0",
"laminas/laminas-log": "2.*",
"doctrine/doctrine-module": "^5.0",
"mdjaman/jms-serializer-module": "3.*",
"gedmo/doctrine-extensions": "^3.11",
"imagine/imagine": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"vimeo/psalm": "^5.8",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"doctrine/doctrine-orm-module": "If you want to use Doctrine ORM",
"doctrine/doctrine-mongo-odm-module": "If you want to use Doctrine ODM",
"imagine/imagine": "If you need image manipulation after uploading image"
},
"autoload": {
"psr-4": {
"MdjamanCommon\\": "src/MdjamanCommon/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=1G"
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}