-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 932 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
36
37
38
39
40
{
"name": "php-tui/cli-parser",
"description": "Type-safe CLI parser",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PhpTui\\CliParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpTui\\CliParser\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Daniel Leech"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4",
"symfony/var-dumper": "^6.3"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan --memory-limit=1G",
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix",
"phpunit": "./vendor/bin/phpunit",
"integrate": [
"@php-cs-fixer",
"@phpstan",
"@phpunit"
]
}
}