-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathcomposer.json
129 lines (123 loc) · 3.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "inex/IXP-Manager",
"description": "An application by INEX to manage Internet Exchange Points (IXPs) - https://www.ixpmanager.org/",
"type": "project",
"keywords": ["ixp manager", "ixpm", "inex", "ixp"],
"homepage": "https://github.com/inex/IXP-Manager/wiki",
"license": "GPL-2.0",
"authors": [
{
"name": "Barry O'Donovan",
"email": "[email protected]",
"homepage": "https://www.ixpmanager.org/" },
{
"name": "Nick Hilliard",
"email": "[email protected]",
"homepage": "https://www.ixpmanager.org/"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opensolutions/Bootstrap-Zend-Framework"
}
],
"require": {
"php": "7.0.*",
"zendframework/zendframework1": "~1.12",
"komola/bootstrap-zend-framework": "dev-master",
"opensolutions/oss-snmp": "dev-master",
"fideloper/proxy": "~3.3",
"laravel/framework": "5.5.*",
"laravel/tinker": "~1.0",
"laravel-doctrine/orm": "1.4.*",
"smarty/smarty": "~3.1",
"foil/foil": "~0.6",
"zendesk/zendesk_api_client_php": "2.*",
"guzzlehttp/guzzle": "~6.0",
"intervention/image": "^2.3",
"anahkiasen/former": "^4.0",
"barryvdh/laravel-dompdf": "^0.8.0",
"luketowers/purifier": "~3.0",
"php-ds/php-ds": "^1.1",
"beberlei/DoctrineExtensions": "^1.0",
"laravel-doctrine/extensions": "1.0.*",
"graham-campbell/flysystem": "^4.0",
"s1lentium/iptools": "^1.1",
"parsedown/laravel": "^1.0",
"webpatser/laravel-countries": "dev-develop"
},
"require-dev": {
"filp/whoops": "~2.0",
"phpunit/phpunit": "~6.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
"barryvdh/laravel-ide-helper": "^2.3",
"barryvdh/laravel-debugbar": "^3.1",
"laravel/dusk": "^2.0"
},
"support": {
"issues": "https://www.ixpmanager.org/support.php",
"forum": "https://www.inex.ie/mailman/listinfo/ixpmanager",
"docs": "http://docs.ixpmanager.org/",
"source": "https://github.com/inex/IXP-Manager"
},
"autoload": {
"classmap": [
"database/seeds",
"database"
],
"psr-0": {
"IXP_": "library/",
"OSS_": "library/"
},
"psr-4": {
"IXP\\": "app/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"post-update-cmd": [
"@php artisan clear-compiled",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta --filename=.phpstorm.meta.php/laravel.meta.php"
]
},
"config": {
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"platform": {
"php": "7.0.10"
}
},
"minimum-stability": "stable"
}