-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 983 Bytes
/
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
{
"name": "asierpaz/woo-commerce-template",
"description": "Template project for a Wordpress with Woo Commerce to avoid all the boilerplate when starting an e-commerce",
"type": "project",
"autoload": {
"psr-4": {
"MySite\\": "src/",
"MySite\\Apps\\Wordpress\\": "apps/wordpress/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MySite\\": "tests/"
}
},
"authors": [
{
"name": "Asier Paz"
}
],
"scripts": {
"static": "phpstan analyse --level max src tests",
"test": "phpunit tests",
"format": "php-cs-fixer --rules=@PSR12 --verbose fix src && php-cs-fixer --rules=@PSR12 --verbose fix tests"
},
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.5",
"maarky/option": "^3.1",
"promphp/prometheus_client_php": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.23",
"squizlabs/php_codesniffer": "3.*"
}
}