-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
80 lines (80 loc) · 2.4 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
{
"name": "stadly/password-police",
"type": "library",
"description": "Password policy enforcement made easy.",
"keywords": [
"password",
"policy",
"security",
"password policy"
],
"homepage": "https://github.com/Stadly/PasswordPolice",
"license": "MIT",
"authors": [
{
"name": "Magnar Ovedal Myrtveit",
"email": "magnar@myrtveit.com",
"homepage": "https://github.com/Stadly",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"http-interop/http-factory-discovery": "^1.4",
"nesbot/carbon": "^2.9",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"stadly/php-date": "^1.0",
"symfony/translation": "^4.3.3",
"vanderlee/php-stable-sort-functions": "^2.0.4"
},
"autoload": {
"psr-4": {
"Stadly\\PasswordPolice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Stadly\\PasswordPolice\\": "tests"
}
},
"scripts": {
"test": [
"composer lint",
"composer check-style",
"composer phpstan",
"composer phpunit"
],
"lint": "parallel-lint . --exclude vendor",
"phpstan": [
"phpstan analyse",
"phpstan analyse -c phpstan.tests.neon.dist --memory-limit 256M"
],
"phpunit": "phpunit",
"check-style": "phpcs src tests --standard=vendor/stadly/php-style/StadlyCodingStandard -p",
"fix-style": "phpcbf src tests --standard=vendor/stadly/php-style/StadlyCodingStandard -p"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"suggest": {
"php-http/guzzle6-adapter": "Automatically discoverable HTTP client.",
"nyholm/psr7": "Automatically discoverable HTTP request factory.",
"ext-pspell": "To use pspell with a dictionary."
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"pepakriz/phpstan-exception-rules": "^0.8.0",
"phpstan/phpstan": "^0.11.10",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^7.1",
"stadly/php-style": "^1.0"
}
}