snipe-it/composer.json

120 lines
3.2 KiB
JSON
Raw Normal View History

2016-03-25 01:18:05 -07:00
{
2016-07-10 20:57:12 -07:00
"name": "snipe/snipe-it",
"description": "Open source asset management system built on Laravel.",
2019-11-18 21:17:36 -08:00
"keywords": [
"assets",
"asset-management",
"it-tools",
"inventory",
"laravel"
],
2018-08-08 20:36:45 -07:00
"license": "AGPL-3.0-or-later",
2016-03-25 01:18:05 -07:00
"type": "project",
2018-07-24 20:10:49 -07:00
"require": {
"php": "^7.2.5",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"adldap2/adldap2": "^10.2",
"alek13/slack": "^1.12",
2018-07-24 20:10:49 -07:00
"bacon/bacon-qr-code": "^1.0",
"barryvdh/laravel-cors": "^0.11.3",
2019-05-22 00:07:49 -07:00
"barryvdh/laravel-debugbar": "^3.2",
2020-04-21 02:47:12 -07:00
"doctrine/cache": "^1.10",
"doctrine/common": "^2.12",
"doctrine/dbal": "^2.10",
"doctrine/inflector": "^1.3",
"doctrine/instantiator": "^1.3",
2019-01-17 20:45:24 -08:00
"eduardokum/laravel-mail-auto-embed": "^1.0",
"enshrined/svg-sanitize": "^0.13.3",
2019-05-22 00:07:49 -07:00
"erusev/parsedown": "^1.7",
2020-04-21 02:47:12 -07:00
"fideloper/proxy": "^4.3",
"guzzlehttp/guzzle": "^6.5",
"intervention/image": "^2.5",
2020-04-21 19:28:24 -07:00
"javiereguiluz/easyslugger": "^1.0",
"laravel/framework": "^6.20",
2020-04-21 02:47:12 -07:00
"laravel/helpers": "^1.2",
"laravel/passport": "^9.3.2",
"laravel/slack-notification-channel": "^2.0",
2020-04-21 02:47:12 -07:00
"laravel/tinker": "^2.4",
"laravelcollective/html": "^6.0",
2020-04-21 02:47:12 -07:00
"league/csv": "^9.5",
"league/flysystem": "1.1.4",
2020-04-21 02:47:12 -07:00
"league/flysystem-aws-s3-v3": "^1.0",
2019-01-18 14:05:10 -08:00
"league/flysystem-cached-adapter": "^1.0",
"neitanod/forceutf8": "^2.0",
2020-04-21 02:47:12 -07:00
"nesbot/carbon": "^2.32",
"nunomaduro/collision": "^3.2",
2020-05-05 07:06:19 -07:00
"onelogin/php-saml": "^3.4",
2020-04-21 02:47:12 -07:00
"paragonie/constant_time_encoding": "^2.3",
2019-05-22 00:07:49 -07:00
"patchwork/utf8": "^1.3",
2020-04-21 02:47:12 -07:00
"phpdocumentor/reflection-docblock": "^5.1",
"phpspec/prophecy": "^1.10",
"pragmarx/google2fa-laravel": "^1.3",
"rollbar/rollbar-laravel": "^6.0",
"spatie/laravel-backup": "^6.9",
"tecnickcom/tc-lib-barcode": "^1.15",
2020-04-21 02:47:12 -07:00
"tightenco/ziggy": "^0.9.0",
"unicodeveloper/laravel-password": "^1.0",
2020-04-21 02:47:12 -07:00
"watson/validating": "^4.0"
},
2019-11-18 21:17:36 -08:00
"require-dev": {
2020-04-21 02:47:12 -07:00
"codeception/codeception": "^4.1",
2020-04-21 19:28:24 -07:00
"codeception/module-asserts": "^1.2",
"codeception/module-laravel5": "^1.1",
"codeception/module-rest": "^1.2",
"codeception/module-webdriver": "^1.0",
2020-04-21 02:47:12 -07:00
"fzaninotto/faker": "^1.9",
2020-11-16 19:08:04 -08:00
"overtrue/phplint": "^2.2",
2020-04-21 02:47:12 -07:00
"phpunit/php-token-stream": "^3.1",
"phpunit/phpunit": "^8.5",
2019-11-18 21:17:36 -08:00
"squizlabs/php_codesniffer": "^3.5",
2020-04-21 02:47:12 -07:00
"symfony/css-selector": "^4.4",
"symfony/dom-crawler": "^4.4"
},
"suggest": {
"ext-mcrypt": "For upgrading from before v5.1 this is used to re-encrypt data"
},
2018-07-24 20:10:49 -07:00
"extra": {
"laravel": {
"dont-discover": [
"rollbar/rollbar-laravel"
]
2016-12-14 04:32:34 -08:00
}
2018-07-24 20:10:49 -07:00
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/unit/BaseTest.php"
]
},
"scripts": {
"post-autoload-dump": [
2020-04-21 02:47:12 -07:00
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
2018-07-24 20:10:49 -07:00
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
2018-07-24 20:10:49 -07:00
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"discard-changes": true,
"process-timeout": 3000,
"platform": {
"php": "7.2.5"
}
2018-07-24 20:10:49 -07:00
}
}