-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.42 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
62
{
"name": "php-school/test-workshop",
"description": "Test Workshop",
"type": "php-school-workshop",
"keywords": [
"cli",
"console",
"terminal",
"phpschool",
"php-school",
"workshop",
"learning",
"education"
],
"homepage": "https://www.phpschool.io",
"license": "MIT",
"authors": [
{
"name": "Aydin Hassan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"php-school/php-workshop": "^4.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.8.11"
},
"autoload": {
"psr-4": {
"PhpSchool\\TestWorkshop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSchool\\TestWorkshopTest\\": "test"
}
},
"scripts": {
"test": [
"@unit-tests",
"@cs",
"@static"
],
"unit-tests": "phpunit",
"cs": [
"phpcs src --standard=PSR12",
"phpcs test --standard=PSR12"
],
"cs-fix": [
"phpcbf src --standard=PSR12 --encoding=UTF-8",
"phpcbf test --standard=PSR12 --encoding=UTF-8"
],
"static": "phpstan --ansi analyse --level max src"
},
"bin": [
"bin/testworkshop"
]
}