-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.23 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "meritoo/common-library",
"description": "Useful classes, methods, extensions etc.",
"license": "MIT",
"authors": [
{
"name": "Meritoo.pl",
"email": "github@meritoo.pl",
"homepage": "http://www.meritoo.pl"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
"doctrine/orm": "^3.3",
"gedmo/doctrine-extensions": "^3.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"infection/infection": "^0.26",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.0"
},
"autoload": {
"psr-4": {
"Meritoo\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meritoo\\Test\\Common\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}