Create composer.json
This commit is contained in:
parent
3156f4bf5a
commit
01c557a92a
1 changed files with 44 additions and 0 deletions
44
composer.json
Normal file
44
composer.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue