-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.2 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
{
"name": "selfsimilar/laravel-d7-password",
"description": "Laravel package that checks and creates Drupal 7 password hashes",
"version": "0.1.2",
"type": "laravel-package",
"keywords": [
"laravel",
"drupal",
"password",
"hashing"
],
"homepage": "https://github.com/selfsimilar/laravel-d7-password",
"license": "MIT",
"authors": [
{
"name": "Colin Sheaff",
"email": "[email protected]",
"homepage": "http://colin.sheaff.net"
}
],
"support": {
"issues": "https://github.com/selfsimilar/laravel-d7-password/issues"
},
"require": {
"selfsimilar/drupal7_password_hasher": "^1.0",
"php": ">=5.3.0",
"illuminate/support": ">=4.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"Selfsimilar\\D7Password\\": "src/"
}
},
"replace": {
"selfsimilar/laravel-drupal7-password": "self.version"
},
"extra": {
"laravel": {
"providers": [
"Selfsimilar\\D7Password\\D7PasswordProvider"
],
"aliases": {
"D7Password": "Selfsimilar\\D7Password\\Facades\\D7Password"
}
}
}
}