snipe-it/composer.json

68 lines
1.8 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",
"aacotroneo/laravel-saml2": "^0.8.1",
"aws/aws-sdk-php-laravel": "^3.1",
"barryvdh/laravel-debugbar": "^2.3",
"doctrine/cache": "^1.6",
"doctrine/common": "^2.7",
"doctrine/dbal": "v2.4.2",
"erusev/parsedown": "^1.6",
"fideloper/proxy": "^3.1",
"intervention/image": "^2.3",
"javiereguiluz/easyslugger": "^1.0",
"laravel/framework": "5.4.*",
"laravel/passport": "^1.0",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^5.3",
"league/csv": "^8.1",
"maknz/slack": "^1.7",
"neitanod/forceutf8": "^2.0",
"patchwork/utf8": "~1.2",
"pragmarx/google2fa": "^1.0",
"spatie/laravel-backup": "^3.0.0",
"tecnickcom/tc-lib-barcode": "^1.15",
"watson/validating": "^3.0"
},
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.7",
2016-12-14 04:32:34 -08:00
"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": "*"
2016-03-25 01:18:05 -07:00
},
"autoload": {
"classmap": [
"database"
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"
]
},
"config": {
2017-04-27 05:24:30 -07:00
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
2016-12-14 04:32:34 -08:00
}
2016-03-25 01:18:05 -07:00
}