-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 918 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
{
"name": "jorgecortesdev-codigo-y-cafe/example-template",
"description": "Esqueleto de un repositorio para los ejemplos de código de mi canal de youtube.",
"keywords": [
"php"
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"symplify/easy-coding-standard": "^12.0.8",
"symplify/phpstan-extensions": "^11.4.2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit",
"phpstan": "phpstan analyse --ansi",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true
}