-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (59 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vstelmakh/url-highlight-symfony-bundle",
"description": "Symfony bundle for url highlight library",
"keywords": ["symfony", "bundle", "highlight", "url", "html"],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/vstelmakh/url-highlight-symfony-bundle",
"authors": [
{
"name": "Volodymyr Stelmakh",
"homepage": "https://github.com/vstelmakh"
}
],
"require": {
"php": "^7.1 || ^8",
"symfony/config": ">=2.7 <6",
"symfony/dependency-injection": ">=2.7 <6",
"symfony/http-kernel":">=2.7 <6",
"symfony/yaml": ">=2.7 <6",
"vstelmakh/url-highlight": "^3",
"vstelmakh/url-highlight-twig-extension": "^3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^7.5.3 || ^8 || ^9.3",
"vstelmakh/covelyzer": "^0.2"
},
"autoload": {
"psr-4": {
"VStelmakh\\UrlHighlightSymfonyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VStelmakh\\UrlHighlightSymfonyBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test:phpcs": "vendor/bin/phpcs -n",
"test:phpstan": "vendor/bin/phpstan analyse --ansi --no-progress",
"test:phpunit": "vendor/bin/phpunit --colors=always",
"test:phpunit-coverage": "@test:phpunit --coverage-clover var/coverage.xml",
"test:covelyzer": "vendor/bin/covelyzer var/coverage.xml --ansi",
"test:all": [
"@test:phpcs",
"@test:phpstan",
"@test:phpunit-coverage",
"@test:covelyzer"
]
},
"scripts-descriptions": {
"test:phpcs": "Run PHP Code Sniffer",
"test:phpstan": "Run PHPStan",
"test:phpunit": "Run PHPUnit",
"test:phpunit-coverage": "Run PHPUnit with coverage",
"test:all": "Run all code analysis and tests"
}
}