-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.58 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
63
{
"name": "php-school/php8-appreciate",
"description": "2020 PHP: A showcase and classroom for the cutting edge features of PHP 8",
"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": "^8.0",
"php-school/php-workshop": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.8.10",
"timeweb/phpstan-enum": "^3.1"
},
"autoload": {
"psr-4": {
"PhpSchool\\PHP8Appreciate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSchool\\PHP8AppreciateTest\\": "test"
}
},
"scripts": {
"test": [
"@unit-tests",
"@cs",
"@static"
],
"unit-tests": "phpunit",
"cs": [
"phpcs src --standard=PSR12",
"phpcs test --standard=PSR12 --ignore='test/solutions'"
],
"cs-fix": [
"phpcbf src --standard=PSR12 --encoding=UTF-8",
"phpcbf test --standard=PSR12 --encoding=UTF-8 --ignore='test/solutions'"
],
"static": "phpstan --ansi analyse --level max src"
},
"bin": [
"bin/php8appreciate"
]
}