-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.06 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "1biot/fiquela-cli",
"description": "Fiquela CLI using 1biot/fiquela package in command line",
"type": "project",
"bin": ["bin/fiquela-cli"],
"require": {
"php": ">=8.2",
"ext-readline": "*",
"ext-curl": "*",
"symfony/console": "^7.4",
"1biot/fiquela": "^3.0",
"nette/utils": "^4.1",
"guzzlehttp/guzzle": "^7.10",
"maennchen/zipstream-php": "^2.4"
},
"require-dev": {
"phpstan/phpstan-nette": "^1.3",
"squizlabs/php_codesniffer": "^3.11",
"phpunit/phpunit": "^10",
"tracy/tracy": "^2.10",
"phpstan/phpstan": "1.12.13"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FQL\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"": "./tests/"
}
},
"scripts": {
"dev": [
"bin/fiquela-cli"
],
"build:phar": [
"php -d phar.readonly=0 box.phar compile"
],
"utils:phpstan": [
"vendor/bin/phpstan"
],
"utils:phpcs": [
"vendor/bin/phpcs"
],
"utils:phpcbf": [
"vendor/bin/phpcbf"
],
"utils:phpunit": [
"vendor/bin/phpunit"
],
"utils:phpunit:coverage": [
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
],
"utils:phpunit:coverage-summary": [
"@utils:phpunit:coverage --only-summary-for-coverage-text"
],
"test:phpcs": [
"@utils:phpcs --standard=phpcs.xml -p -n"
],
"test:phpstan": [
"@utils:phpstan analyse"
],
"test:phpstan:no-memory-limit": [
"@utils:phpstan analyse --memory-limit=-1"
],
"test:phpstan:memory-limit-256": [
"@utils:phpstan analyse --memory-limit=256M"
],
"test:phpcs:summary": [
"@utils:phpcs --standard=phpcs.xml -p -n --report=summary"
],
"test:phpunit": [
"@utils:phpunit"
],
"test:phpunit:coverage": [
"@utils:phpunit:coverage-summary"
],
"test": [
"@test:phpcs:summary",
"@test:phpstan:memory-limit-256",
"@test:phpunit:coverage"
]
},
"config": {
"platform": {
"php": "8.2.0"
}
}
}