-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
42 lines (38 loc) · 930 Bytes
/
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
{
"name": "teresko/palladium",
"type": "library",
"homepage": "https://github.com/teresko/palladium",
"license": "BSD-3-Clause",
"description": "User authentication and registration component",
"keywords": ["authentication", "registration", "login", "account", "auth"],
"authors": [
{
"name": "Mārtiņš Tereško",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "": "src/" }
},
"require": {
"php": ">=7.0",
"ext-pdo": "*",
"psr/log": "1.*",
"ext-json": "*"
},
"require-dev": {
"php": ">=7.0",
"ext-pdo_sqlite": "*",
"infection/infection": "*",
"phpunit/phpunit": "^6.5"
},
"config": {
"platform": {
"php": "7.0"
},
"platform-dev": {
"php": "7.0"
}
}
}