-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "kettasoft/pass-audit",
"description": "PassAudit is a powerful and efficient Laravel package designed to enhance the security of user passwords in your application. This package provides a comprehensive solution to prevent users from reusing their previous passwords, thereby mitigating the risk of unauthorized access.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Kettasoft\\PassAudit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kettasoft\\PassAudit\\Tests\\": "tests/",
"Kettasoft\\PassAudit\\Tests\\Database\\Factories\\": "tests/database/factories/"
}
},
"authors": [
{
"name": "Abdalrhman Emad Saad",
"email": "kettasoft@gmail.com"
}
],
"minimum-stability": "dev",
"require-dev": {
"laravel/framework": "^10",
"pestphp/pest": "2.x-dev",
"orchestra/testbench": "^8.0",
"mockery/mockery": "1.6.x-dev"
},
"scripts": {
"test": [
"vendor/bin/pest --configuration=phpunit.xml"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}