snipe-it/composer.json

75 lines
2.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.",
"keywords": ["assets", "asset-management", "laravel"],
"license": "AGPL-3",
2016-03-25 01:18:05 -07:00
"type": "project",
2016-12-14 04:32:34 -08:00
"require": {
"php": ">=5.6.4",
2017-02-02 18:54:54 -08:00
"laravel/framework": "5.4.*",
2016-12-14 04:32:34 -08:00
"watson/validating": "^3.0",
"laravelcollective/html": "^5.3",
"tecnickcom/tc-lib-barcode": "^1.15",
"intervention/image": "^2.3",
"league/csv": "^8.1",
"maknz/slack": "^1.7",
"erusev/parsedown": "^1.6",
"fideloper/proxy": "^3.1",
"aws/aws-sdk-php-laravel": "^3.1",
"doctrine/cache": "^1.6",
"doctrine/common": "^2.7",
"doctrine/dbal": "v2.4.2",
"barryvdh/laravel-debugbar": "^2.3",
"spatie/laravel-backup": "^3.0.0",
2016-12-14 04:32:34 -08:00
"pragmarx/google2fa": "^1.0",
"neitanod/forceutf8": "^2.0",
"laravel/passport": "^1.0",
"javiereguiluz/easyslugger": "^1.0",
"patchwork/utf8": "~1.2"
2016-12-14 04:32:34 -08:00
2016-03-25 01:18:05 -07:00
},
"require-dev": {
2016-12-14 04:32:34 -08:00
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"symfony/css-selector": "3.1.*",
2016-12-14 10:06:05 -08:00
"symfony/dom-crawler": "3.1.*",
"codeception/codeception": "2.2.9",
"squizlabs/php_codesniffer": "*",
"laravel/tinker": "^1.0"
2016-03-25 01:18:05 -07:00
},
"autoload": {
"classmap": [
"database",
2017-01-12 23:40:23 -08:00
"app/Helpers/Helper.php",
"app/Http/Transformers"
2016-03-25 01:18:05 -07:00
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
2016-12-14 04:32:34 -08:00
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
2016-03-25 01:18:05 -07:00
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
2016-12-14 04:32:34 -08:00
"Illuminate\\Foundation\\ComposerScripts::postInstall",
2016-03-25 01:18:05 -07:00
"php artisan optimize"
],
"post-update-cmd": [
2016-12-14 04:32:34 -08:00
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
2016-03-25 01:18:05 -07:00
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
2016-12-14 04:32:34 -08:00
}
2016-03-25 01:18:05 -07:00
}