-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 802 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 802 Bytes
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
{
"name": "palmtree/argparser",
"description": "ArgParser component for Palmtree PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andy Palmer",
"email": "andy@andypalmer.me"
}
],
"require": {
"php": ">=8.3",
"palmtree/nameconverter": "^3.0"
},
"autoload": {
"psr-4": {
"Palmtree\\ArgParser\\": "src"
}
},
"require-dev": {
"palmtree/php-cs-fixer-config": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.4"
},
"scripts": {
"fix": "@php vendor/bin/php-cs-fixer fix --diff",
"test": "@php vendor/bin/phpunit",
"sa": "@php vendor/bin/phpstan"
}
}