-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.75 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "jblab/password-validator-bundle",
"description": "Validates a password based on certain criteria.",
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Julien Bonnier",
"email": "julien@jblab.info"
}
],
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Jblab\\PasswordValidatorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jblab\\PasswordValidatorBundle\\Tests\\": "tests/"
}
},
"scripts": {
"tools:upgrade": [
"@tools:upgrade:php-lint",
"@tools:upgrade:phpcs",
"@tools:upgrade:phpstan"
],
"tools:upgrade:php-lint": "composer upgrade -W -d tools/php-lint",
"tools:upgrade:phpcs": "composer upgrade -W -d tools/phpcs",
"tools:upgrade:phpstan": "composer upgrade -W -d tools/phpstan",
"tools:run": [
"@tools:run:php-lint",
"@tools:run:phpcs",
"@tools:run:phpstan"
],
"tools:run:php-lint": "tools/php-lint/vendor/bin/parallel-lint --exclude tests/IntegrationTests/cache/ src tests",
"tools:run:phpcbf": "tools/phpcs/vendor/bin/phpcbf",
"tools:run:phpcs": "tools/phpcs/vendor/bin/phpcs -s",
"tools:run:phpstan": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G"
}
}