Create composer.json

This commit is contained in:
Tony Roy 2021-03-10 17:17:20 -04:00 committed by GitHub
commit 01c557a92a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

44
composer.json Normal file
View file

@ -0,0 +1,44 @@
{
"name": "wickedsoft/laravel-netbox",
"description": "Netbox for Laravel 8.x",
"keywords": ["netbox", "laravel"],
"license": "MIT",
"require": {
"php": "^8.0|^7.4",
"laravel/framework": "^8.0",
"guzzlehttp/guzzle": "^7.0.1"
},
"require-dev": {
"phpunit/phpunit" : "^9.3.3",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"wickedsoft\\NetBox\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"wickedsoft\\NetBox\\tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"wickedsoft\\NetBox\\ServiceProvider"
],
"aliases": {
"NetBox": "wickedsoft\\NetBox\\Facade"
}
}
}
}