-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.47 KB
/
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
41
42
43
44
{
"name": "phalcon/proxy-psr16",
"description": "Phalcon Framework proxy classes for PSR-16",
"keywords": [
"php",
"framework",
"phalcon",
"psr-16"
],
"license": "MIT",
"require": {
"php": ">=8.0 <9.0",
"psr/simple-cache": "^3.0"
},
"autoload": {
"psr-4": {
"Phalcon\\Proxy\\Psr16\\": "src/",
"Phalcon\\Proxy\\Psr16\\Tests\\Support\\": "tests/support/",
"Phalcon\\Proxy\\Psr16\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"require-dev": {
"pds/skeleton": "^1.0",
"phalcon/ide-stubs": "^5.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.8",
"vimeo/psalm": "^5.19",
"vlucas/phpdotenv": "^5.6"
},
"scripts": {
"cs": "phpcs --standard=phpcs.xml",
"cs-fix": "phpcbf --standard=phpcs.xml",
"test-unit": "phpunit tests/unit --testdox --process-isolation -v",
"test-coverage-text": "phpunit tests/unit --testdox --process-isolation -v --coverage-text",
"test-coverage-clover": "phpunit tests/unit --testdox --process-isolation -v --coverage-clover tests/support/output/clover.xml",
"test-coverage-html": "phpunit tests/unit --testdox --process-isolation -v --coverage-html tests/support/output/"
}
}