gpapakitsos / laravel-greek-company-info
Greek company info via GSIS services
v1.0.0
2020-06-13 11:51 UTC
Requires
- php: >=7.0
- illuminate/support: >=5.5
Requires (Dev)
- orchestra/testbench: >=3.5
This package is auto-updated.
Last update: 2025-07-13 23:27:34 UTC
README
This package performs requests to GSIS and returns company info by provided VAT ID.
Requirements
Installation
Require the package with composer.
composer require gpapakitsos/laravel-greek-company-info
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Laravel without auto-discovery:
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
GPapakitsos\GreekCompanyInfo\GreekCompanyInfoServiceProvider::class,
Copy the package config file to your local config folder with the publish command:
php artisan vendor:publish --provider="GPapakitsos\GreekCompanyInfo\GreekCompanyInfoServiceProvider"