-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.49 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.49 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
83
84
85
86
87
88
{
"name": "blitz-php/schild",
"description": "Authentification et Autorisation pour BlitzPHP",
"license": "MIT",
"type": "library",
"keywords": [
"BlitzPHP",
"authentication",
"authorization"
],
"authors": [
{
"name": "Dimitri Sitchet Tomkeu",
"email": "dimitrisitchet@gmail.com"
}
],
"homepage": "https://github.com/blitz-php/schild",
"require": {
"php": "^8.1",
"blitz-php/wolke": "^0.6",
"phpmailer/phpmailer": "^6.8",
"blitz-php/parametres": "^1.2"
},
"require-dev": {
"blitz-php/coding-standard": "^1.3",
"blitz-php/framework": "^0.11",
"firebase/php-jwt": "^6.4",
"phpstan/phpstan": "^1.4.7",
"kahlan/kahlan": "^5.2"
},
"suggest": {
"ext-openssl": "Requis pour utiliser l'authentificateur JWT.",
"blitz-php/http-client": "Nécessaire pour utiliser la règle de validation du mot de passe via la classe PwnedValidator.",
"firebase/php-jwt": "Requis pour utiliser l'authentificateur JWT."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BlitzPHP\\Schild\\": "src/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
],
"files": [
"src/Config/constants.php",
"src/Config/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyze": [
"phpstan analyze"
],
"sa": "@analyze",
"ci": [
"Composer\\Config::disableProcessTimeout",
"@cs",
"@analyze",
"@test"
],
"cs": [
"php-cs-fixer fix --ansi --verbose --dry-run --diff"
],
"cs:fix": [
"php-cs-fixer fix --ansi --verbose --diff"
],
"style": "@cs-fix",
"test": "kahlan",
"test:cov": "kahlan --coverage=3 --reporter=verbose --clover=clover.xml"
},
"support": {
"forum": "https://github.com/blitz-php/schild/discussions",
"source": "https://github.com/blitz-php/schild",
"issues": "https://github.com/blitz-php/schild/issues",
"docs": "https://github.com/blitz-php/schild"
}
}