-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 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
{
"name": "jdevelop/template-php",
"description": "A streamlined, ready-to-use GitHub template for PHP projects, offering best practices, automated setup, and essential tools to accelerate development and ensure maintainable code.",
"version": "1.0.0",
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Jean-Denis VIDOT",
"email": "contact@jdevelop.io"
}
],
"autoload": {
"psr-4": {
"JDevelop\\TemplatePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JDevelop\\TemplatePhp\\Tests\\Unit\\": "test/unit"
}
},
"scripts": {
"test": "phpunit -c config/phpunit/phpunit.xml",
"phpcs": "phpcs --standard=PSR12 src test",
"phpstan": "phpstan analyse -c config/phpstan/phpstan.neon",
"phpmd": "phpmd src text config/phpmd/ruleset.xml"
},
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.12",
"phpmd/phpmd": "^2.15"
}
}