This repository has been archived by the owner on Sep 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 3.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ping-localhost/anonymizer-bundle",
"type": "symfony-bundle",
"description": "An annotation-based bundle to anonymize sensitive data per entity",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"anonymize",
"anonymizer",
"annotation",
"doctrine"
],
"homepage": "https://github.com/ping-localhost/anonymizer-bundle",
"authors": [
{
"name": "Mitchell",
"email": "[email protected]",
"homepage": "https://github.com/ping-localhost"
}
],
"support": {
"source": "https://github.com/ping-localhost/anonymizer-bundle",
"wiki": "https://github.com/ping-localhost/anonymizer-bundle/wiki",
"issues": "https://github.com/ping-localhost/anonymizer-bundle/issues"
},
"require": {
"php": "^7.2.0",
"doctrine/annotations": "^1.6.0",
"doctrine/cache": "^1.8.0",
"doctrine/common": "^2.10.0",
"fzaninotto/faker": "^1.8.0",
"jms/metadata": "^1.7.0",
"symfony/cache": "^3.4.26|^4.2.7",
"symfony/dependency-injection": "^3.4.26|^4.2.7",
"symfony/framework-bundle": "^3.4.26|^4.2.7",
"symfony/http-foundation": "^3.4.26|^4.2.7",
"symfony/yaml": "^3.4.26|^4.2.7"
},
"require-dev": {
"hostnet/phpcs-tool": "^8.3.3",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"nyholm/symfony-bundle-test": "^1.4.0",
"phpstan/phpstan": "^0.11.5",
"phpunit/phpunit": "^8.2.5",
"sebastian/phpcpd": "^4.1.0",
"sensiolabs/security-checker": "^6.0.2"
},
"conflict": {
"paragonie/random_compat": "<2.0.0"
},
"autoload": {
"psr-4": {
"PingLocalhost\\AnonymizerBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PingLocalhost\\AnonymizerBundle\\": "tests"
},
"classmap": [
"tests/Functional/Fixtures/TestKernel.php"
]
},
"scripts": {
"ci": [
"@composer syntax-check",
"@composer validate --strict --no-check-lock",
"@composer security-checker",
"@composer phpcpd",
"@composer phpstan",
"@composer alex"
],
"alex": "./node_modules/.bin/alex",
"phpcpd": "./vendor/bin/phpcpd ./src",
"phpstan": "./vendor/bin/phpstan analyse --level=3 ./src",
"security-checker": "./vendor/bin/security-checker security:check ./composer.lock",
"syntax-check": [
"./vendor/bin/parallel-lint --exclude ./vendor .",
"./vendor/bin/phpcs"
]
},
"scripts-descriptions": {
"alex": "Check for insensitive language",
"ci": "Perform continuous integration tasks",
"phpcpd": "Detect copy/paste in source code",
"phpstan": "Analyze source code",
"security-checker": "Look for dependencies with known security vulnerabilities",
"syntax-check": "Check syntax of source code"
},
"config": {
"sort-packages": true
},
"archive": {
"exclude": [
"/tests"
]
}
}