Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 7302c70

Browse files
Update composer defined scripts
1 parent 7875e3b commit 7302c70

1 file changed

Lines changed: 58 additions & 38 deletions

File tree

composer.json

Lines changed: 58 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,60 @@
11
{
2-
"name": "lendable/visitor-tracking-bundle",
3-
"type": "symfony-bundle",
4-
"description": "visitor tracking bundle",
5-
"keywords": [
6-
"tracking",
7-
"Symfony2"
8-
],
9-
"homepage": "https://github.com/Lendable/VisitorTrackingBundle.git",
10-
"license": "MIT",
11-
"authors": [
12-
{
13-
"name": "The Lendable Team",
14-
"email": "contact@lendable.co.uk"
15-
}
16-
],
17-
"require": {
18-
"php": ">=7.1",
19-
"symfony/framework-bundle": "^3.3",
20-
"doctrine/doctrine-bundle": "~1.6",
21-
"doctrine/orm": "~2.1",
22-
"stof/doctrine-extensions-bundle": "*",
23-
"symfony/security-bundle": "^3.3"
24-
},
25-
"require-dev": {
26-
"phpunit/phpunit": "^5.6",
27-
"roave/security-advisories": "dev-master",
28-
"jakub-onderka/php-parallel-lint": "^0.9.2"
29-
},
30-
"autoload": {
31-
"psr-4": {
32-
"Alpha\\VisitorTrackingBundle\\": "src/"
33-
}
34-
},
35-
"autoload-dev": {
36-
"psr-4": {
37-
"Alpha\\VisitorTrackingBundle\\Tests\\": "tests/"
38-
}
39-
}
2+
"name": "lendable/visitor-tracking-bundle",
3+
"type": "symfony-bundle",
4+
"description": "visitor tracking bundle",
5+
"keywords": [
6+
"tracking",
7+
"Symfony2"
8+
],
9+
"homepage": "https://github.com/Lendable/VisitorTrackingBundle.git",
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "The Lendable Team",
14+
"email": "contact@lendable.co.uk"
15+
}
16+
],
17+
"require": {
18+
"php": ">=7.1",
19+
"symfony/framework-bundle": "^3.3",
20+
"doctrine/doctrine-bundle": "~1.6",
21+
"doctrine/orm": "~2.1",
22+
"stof/doctrine-extensions-bundle": "*",
23+
"symfony/security-bundle": "^3.3"
24+
},
25+
"require-dev": {
26+
"friendsofphp/php-cs-fixer": "*",
27+
"jakub-onderka/php-parallel-lint": "^1.0",
28+
"phpunit/phpunit": "^5.6",
29+
"roave/security-advisories": "dev-master",
30+
"symfony/phpunit-bridge": "^3.0|^4.0"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"Alpha\\VisitorTrackingBundle\\": "src/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
39+
"Alpha\\VisitorTrackingBundle\\Tests\\": "tests/"
40+
}
41+
},
42+
"scripts": {
43+
"check-code-style": [
44+
"vendor/bin/php-cs-fixer fix --config='./.php_cs' --show-progress=none --dry-run --no-interaction -v"
45+
],
46+
"fix-code-style": [
47+
"vendor/bin/php-cs-fixer fix --config='./.php_cs' --show-progress=none --no-interaction -v"
48+
],
49+
"run-tests": [
50+
"vendor/bin/phpunit"
51+
],
52+
"validate-files": [
53+
"vendor/bin/parallel-lint --exclude vendor ."
54+
]
55+
},
56+
"config": {
57+
"sort-packages": true
58+
},
59+
"prefer-stable": true
4060
}

0 commit comments

Comments
 (0)