-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (50 loc) · 1.37 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
{
"name": "reformo/backendbase-utility",
"description": "Standard Library for Backendbase libraries.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mehmet Korkmaz",
"email": "mehmet@mkorkmaz.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-dom": "*",
"psr/container": "^1.0|^2.0"
},
"suggest": {
"ext-libxml": "TagAndAttributeRemover needs this extention",
"ext-intl": "Slugify needs this extension"
},
"require-dev": {
"codeception/codeception": "^5.0",
"php-coveralls/php-coveralls": "^v2.2.0",
"codeception/module-asserts": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"doctrine/coding-standard": "^9.0",
"laminas/laminas-servicemanager": "^3.6"
},
"autoload": {
"psr-4": {
"Backendbase\\Utility\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Backendbase\\Resources\\" : "tests/resources/src/",
"UnitTest\\": "tests/unit"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs --standard=Doctrine",
"cs-fix": "vendor/bin/phpcbf --standard=Doctrine"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}