-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.23 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
{
"name": "burus86/template-php",
"repositories": [
{
"type": "git",
"url": "https://github.com/burus86/template-php/"
}
],
"type": "library",
"description": "Template repository for all open-source PHP projects",
"keywords": ["php", "template"],
"homepage": "https://github.com/burus86/template-php/",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"require": {
"php": ">=8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"symfony/dotenv": "4.4.*"
},
"require-dev": {
"behat/behat": "^3.8",
"bmitch/churn-php": "^1.5",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^0.12.93",
"phpunit/phpunit": "^9.5",
"povils/phpmnd": "^2.4",
"qossmic/deptrac-shim": "^0.17",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/phpunit-bridge": "^5.2",
"wapmorgan/php-deprecation-detector": "^2.0"
}
}