This repository was archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (77 loc) · 2.32 KB
/
composer.json
File metadata and controls
82 lines (77 loc) · 2.32 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
{
"name": "lendable/visitor-tracking-bundle",
"type": "symfony-bundle",
"description": "visitor tracking bundle",
"keywords": [
"tracking",
"Symfony2"
],
"homepage": "https://github.com/Lendable/VisitorTrackingBundle",
"license": "MIT",
"authors": [
{
"name": "The Lendable Team",
"email": "contact@lendable.co.uk"
}
],
"autoload": {
"psr-4": {
"Alpha\\VisitorTrackingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alpha\\VisitorTrackingBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"doctrine/doctrine-bundle": "~1.6|^2.0",
"doctrine/inflector": "^1.4",
"doctrine/orm": "~2.1",
"stof/doctrine-extensions-bundle": "*",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/security-bundle": "^3.4|^4.0"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink-extension": "^2.3",
"behat/symfony2-extension": "^2.1",
"doctrine/inflector": "^1.3",
"friendsofphp/php-cs-fixer": "*",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.0",
"sensiolabs/security-checker": "^5.0",
"slam/phpstan-extensions": "^4.0",
"symfony/phpunit-bridge": "^3.0|^4.1.12|^5.0"
},
"scripts": {
"check-code-style": [
"php-cs-fixer fix --config='./.php_cs' --show-progress=none --dry-run --no-interaction --diff -v"
],
"check-security": [
"security-checker security:check"
],
"fix-code-style": [
"php-cs-fixer fix --config='./.php_cs' --show-progress=none --no-interaction --diff -v"
],
"run-static-analysis": [
"phpstan analyse -c tools/phpstan/phpstan.neon --level=8 --no-progress --error-format=table src/ tests/"
],
"run-tests": [
"phpunit"
],
"run-tests-with-clover": [
"phpunit --coverage-clover build/logs/clover.xml"
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"process-timeout": 1000
},
"prefer-stable": true
}