-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing the composer.json to reflect that this package has been forked and to be published on packagist.org
- Loading branch information
1 parent
67dfeee
commit 8297ab8
Showing
1 changed file
with
26 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,30 @@ | ||
{ | ||
"name": "pmatseykanets/laravel-scout-postgres", | ||
"description": "PostgreSQL Full Text Search Driver for Laravel Scout", | ||
"keywords": [ | ||
"laravel", | ||
"laravel scout", | ||
"search", | ||
"postgresql", | ||
"full text search", | ||
"FTS" | ||
], | ||
"homepage": "https://github.com/pmatseykanets/laravel-scout-postgres", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/pmatseykanets/laravel-scout-postgres/issues", | ||
"source": "https://github.com/pmatseykanets/laravel-scout-postgres" | ||
"name": "devnoiseconsulting/laravel-scout-postgres-tsvector", | ||
"description": "PostgreSQL Full Text Search Driver for Laravel Scout", | ||
"keywords": [ | ||
"laravel", | ||
"laravel scout", | ||
"search", | ||
"postgresql", | ||
"full text search", | ||
"FTS" | ||
], | ||
"homepage": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector/issues", | ||
"source": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Michael Flynn", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/devNoiseConsulting" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Peter Matseykanets", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/pmatseykanets" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3|^8.0", | ||
"illuminate/contracts": "~6.0|~7.0|~8.0|~9.0", | ||
"illuminate/database": "~6.0|~7.0|~8.0|~9.0", | ||
"illuminate/support": "~6.0|~7.0|~8.0|~9.0", | ||
"laravel/scout": "~7.0|~8.0|~9.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^8.3", | ||
"mockery/mockery": "^1.2.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ScoutEngines\\Postgres\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"ScoutEngines\\Postgres\\Test\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"ScoutEngines\\Postgres\\PostgresEngineServiceProvider" | ||
] | ||
} | ||
{ | ||
"name": "Peter Matseykanets", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/pmatseykanets" | ||
} | ||
] | ||
} |