This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (57 loc) · 1.67 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
{
"name": "alexeyshockov/plain-commands",
"type": "library",
"description": "Wrapper around Symfony Console Component to define commands easily",
"keywords": ["console", "symfony", "cli", "annotations"],
"homepage": "http://github.com/alexeyshockov/plain-commands",
"license": "MIT",
"support": {
"issues": "https://github.com/alexeyshockov/plain-commands/issues"
},
"authors": [
{
"name": "Alexey Shokov",
"email": "alexey@shockov.com"
}
],
"require": {
"php": "~7.1",
"symfony/console": "~3.0 || ~4.0 || ~5.0",
"doctrine/annotations": "~1.2 || ~2.0",
"phpdocumentor/reflection-docblock": "~3.0 || ~4.0",
"phpoption/phpoption": "~1.5",
"danielstjules/stringy": "~2.1 || ~3.0",
"lstrojny/functional-php": "~1.4",
"alexeyshockov/pattern-matcher": "^0.1",
"alexeyshockov/colada-x": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "~3.0"
},
"autoload": {
"psr-4": {
"PlainCommands\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"PlainCommands\\Examples\\": "examples/src",
"PlainCommands\\Tests\\": "tests"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"scripts": {
"ci": [
"@check-style",
"@test"
],
"test": "vendor/bin/phpunit --testdox",
"check-style": "vendor/bin/phpcs"
}
}