-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.5 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "srgiz/phalcon-profiler",
"type": "library",
"keywords": ["phalcon", "profiler", "webprofiler", "debug", "debugbar"],
"license": "MIT",
"authors": [
{
"name": "Sergei Zubrilin",
"homepage": "https://github.com/srgiz"
}
],
"require": {
"php": ">=8.0",
"ext-phalcon": "^5.1",
"ext-xmlreader": "*"
},
"require-dev": {
"phalcon/ide-stubs": "v5.1.4",
"vimeo/psalm": "^5.13",
"friendsofphp/php-cs-fixer": "^3.75",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Srgiz\\Phalcon\\WebProfiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Srgiz\\Phalcon\\WebProfiler\\Tests\\": "tests/unit/"
}
},
"minimum-stability": "dev",
"scripts": {
"example-clear-cache": [
"rm -rf example/app/var/cache/volt/*.php",
"rm -rf example/micro/var/cache/volt/*.php"
],
"cs-fixer": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix"
],
"dry-cs-fixer": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"psalm": [
"vendor/bin/psalm --no-cache"
],
"test": [
"rm -rf tests/files/.phpunit.cache",
"rm -rf tests/files/cache.volt",
"rm -rf .phpunit.result.cache",
"XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --coverage-html tests/files/.phpunit.cache/coverage",
"php tests/badge/gen.php"
],
"quality": [
"@example-clear-cache",
"@cs-fixer",
"@psalm",
"@test"
]
}
}