-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
63 lines (63 loc) · 1.75 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": "certificationy/certificationy-cli",
"type": "library",
"description": "A CLI tool to train certifications",
"keywords": [
"symfony",
"certification",
"cli",
"test",
"exam"
],
"homepage": "http://github.com/certificationy/certificationy-cli",
"license": "MIT",
"authors": [
{
"name": "Vincent Composieux",
"email": "[email protected]"
},
{
"name": "Mickaël Andrieu",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0",
"certificationy/certificationy": "^2.0",
"symfony/yaml": "^4.4 || ^5.4 || ^6.0",
"certificationy/symfony-pack": "^1.4",
"certificationy/php-pack": "^1.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^1.3",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {"Certificationy\\Cli\\": "src"}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix",
"phpstan": "@php ./vendor/bin/phpstan analyse src --level 8",
"test": "@php ./vendor/bin/phpunit"
},
"scripts-descriptions": {
"cs-fix": "Check and fix coding styles using PHP CS Fixer",
"phpstan": "Execute PHPStan analysis",
"test": "Launch PHPUnit test suite"
},
"config": {
"sort-packages": true
}
}