-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 2.18 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
{
"name": "alcidesrc/php-skeleton",
"description": "Application skeleton for projects based on PHP",
"type": "project",
"keywords": ["bootstrap", "skeleton", "php", "TDD", "DDD", "clean code", "boilerplate", "best practices"],
"license": "MIT",
"authors": [
{
"name": "Alcides Ramos",
"email": "[email protected]",
"homepage": "https://alcidesrc.com/"
}
],
"support": {
"issues": "https://github.com/alcidesrc/php-skeleton/issues",
"source": "https://github.com/alcidesrc/php-skeleton"
},
"require": {
"php": "^8.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"UnitTests\\": "tests/Unit"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"require-dev": {
"nunomaduro/mock-final-classes": "^1.2",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"slope-it/clock-mock": "^0.4.0",
"squizlabs/php_codesniffer": "^3.9",
"symfony/var-dumper": "^7.0"
},
"scripts": {
"check-syntax": "parallel-lint --colors -e php -j 10 app/ tests/",
"check-style": "phpcs -p --colors --standard=phpcs.xml app/ tests/",
"fix-style": "phpcbf -p --colors --standard=phpcs.xml app/ tests/",
"phpstan": "phpstan analyse --ansi --memory-limit=1G --configuration=phpstan.neon",
"phpmd": "phpmd app/,tests/ ansi cleancode,codesize,controversial,design,naming,unusedcode",
"tests": "XDEBUG_MODE=off phpunit --configuration phpunit.xml --coverage-text --colors --testdox --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")"
},
"minimum-stability": "stable",
"prefer-stable": true
}