-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.58 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
{
"name": "boilerplate/boilerplate",
"description": "The boilerplate PHP framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benjamin Altpeter",
"email": "[email protected]",
"homepage": "https://benjamin-altpeter.de",
"role": "Developer"
},
{
"name": "Lorenz Sieben",
"email": "[email protected]",
"homepage": "https://lorenz-sieben.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "pear",
"url": "https://pear.php.net"
},
{
"type": "vcs",
"url": "https://git.my-server.in/baltpeter/password-hashing-pbkdf2.git"
}
],
"require": {
"php": ">=7.1",
"myclabs/php-enum": "^1.4",
"pear-pear.php.net/Config_Lite": "*",
"mindplay/composer-locator": "^2.1",
"baltpeter/password-hashing-pbkdf2": "*",
"monolog/monolog": "^1.22",
"symfony/http-foundation": "^3.3",
"twig/twig": "^2.0"
},
"autoload": {
"files": [
"lib/boilerplate/helpers.php"
],
"psr-4": {
"boilerplate\\": "lib/boilerplate/",
"boilerplate\\Core\\": "lib/boilerplate/Core/",
"boilerplate\\DataIo\\": "lib/boilerplate/DataIo/",
"boilerplate\\DataType\\": "lib/boilerplate/DataType/",
"boilerplate\\ExternalApi\\": "lib/boilerplate/ExternalApi/",
"boilerplate\\Utility\\": "lib/boilerplate/Utility/"
}
}
}