-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.54 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.54 KB
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
{
"name": "artemeon/console",
"description": "Wrapper library around `symfony/console` providing a customized console styling and some helpers.",
"type": "library",
"license": "MIT",
"scripts": {
"phpstan": "php ./vendor/bin/phpstan analyse --memory-limit=-1",
"pint": "./vendor/bin/pint --test -v",
"pint:fix": "./vendor/bin/pint",
"refactor": "./vendor/bin/rector process",
"test": "./vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"test:type-coverage": "./vendor/bin/pest --type-coverage --min=100"
},
"autoload": {
"psr-4": {
"Artemeon\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\Console\\Example\\": "example/",
"Artemeon\\Console\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Marc Reichel",
"email": "marc.reichel@artemeon.de"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.40.0|^12.16.0|^13.2.0",
"laravel/prompts": "^0.3.16",
"nunomaduro/termwind": "^1.5|^2.0",
"symfony/console": "^5.0|^6.0|^7.0"
},
"require-dev": {
"laravel/pint": "^1.27.1",
"phpstan/phpstan": "^2.1.40",
"rector/rector": "^2.3.8",
"pestphp/pest": "^3.8.5",
"pestphp/pest-plugin-type-coverage": "^3.6.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}