forked from snipe/snipe-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·78 lines (76 loc) · 1.89 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
{
"name": "snipe/snipe-it",
"description": "A free open source IT asset/license management system built in PHP on Laravel 4.1 and Bootstrap 3.",
"keywords": ["framework", "laravel", "assets", "IT", "management"],
"homepage": "http://snipeitapp.com/",
"license": "AGPL-3.0",
"support": {
"issues": "https://github.com/snipe/snipe-it/issues",
"source": "https://github.com/snipe/snipe-it"
},
"replace": {
"mtdowling/classpreloader":"1.0.*"
},
"require": {
"classpreloader/classpreloader": "1.*",
"symfony/console": "~2",
"symfony/yaml": "~2",
"symfony/config": "~2",
"symfony/stopwatch": "~2",
"laravel/framework": "4.2.17",
"doctrine/cache": "v1.5.4",
"doctrine/common": "v2.5.3",
"doctrine/dbal": "v2.4.2",
"cartalyst/sentry": "2.1.5",
"barryvdh/laravel-debugbar": "1.x",
"chumper/datatable": "2.3.*",
"intervention/image": "dev-master",
"league/csv": "~7.0",
"maknz/slack": "dev-master",
"erusev/parsedown": "dev-master",
"fideloper/proxy": "2.1.1",
"guzzlehttp/guzzle": "5.3.0",
"aws/aws-sdk-php-laravel": "1.0.x-dev",
"schickling/backup": "0.6.0",
"chumper/zipper": "0.5.x",
"tecnickcom/tc-lib-barcode": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:tecnickcom/tc-lib-barcode.git"
}
],
"require-dev": {
"phpunit/phpunit": "*",
"codeception/codeception": "2.1.*",
"mockery/mockery": "0.9.*"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"pre-update-cmd": [
],
"post-update-cmd": [
"php artisan optimize"
],
"post-install-cmd": [
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist",
"bin-dir": "vendor/bin"
},
"minimum-stability": "stable"
}