-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.29 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": "telingadigital/timpleuk",
"description": "Simple Package For Basic PHP",
"keywords": ["telingadigital","timpleuk"],
"license": "MIT",
"authors": [
{
"name": "Telinga Digital",
"email": "dev@telingadigital.com"
}
],
"type": "library",
"require": {
"php": ">=7.0.0",
"doctrine/annotations": "^1.6",
"filp/whoops": "^2.1",
"illuminate/database": "^5.5",
"larapack/dd": "1.*",
"monolog/monolog": "^1.23",
"nikic/fast-route": "^1.2",
"php-di/php-di": "^5.4",
"robmorgan/phinx": "^0.9.1",
"symfony/http-foundation": "^4.0",
"twig/twig": "~2.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"mockery/mockery": "^1.0",
"fzaninotto/faker": "^1.7"
},
"autoload": {
"files": [
"application/Library/Helpers.php"
],
"psr-4": {
"App\\": "application/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.org"
}
}
}