tagmood / laravel-disposable-phone
Disposable phone validator
Requires
- php: ^7.1|^8.0
- ext-json: *
- illuminate/cache: ^6.0|^7.0|^8.0|^9.0
- illuminate/config: ^6.0|^7.0|^8.0|^9.0
- illuminate/console: ^6.0|^7.0|^8.0|^9.0
- illuminate/contracts: ^6.0|^7.0|^8.0|^9.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0
- illuminate/validation: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- mockery/mockery: ^1.3.3|^1.4.2
- orchestra/testbench: *
- phpunit/phpunit: *
- dev-master
- 3.0.44
- 3.0.43
- 3.0.42
- 3.0.41
- 3.0.40
- 3.0.39
- 3.0.38
- 3.0.37
- 3.0.36
- 3.0.35
- 3.0.34
- 3.0.33
- 3.0.32
- 3.0.31
- 3.0.30
- 3.0.29
- 3.0.28
- 3.0.27
- 3.0.26
- 3.0.25
- 3.0.24
- 3.0.23
- 3.0.22
- 3.0.21
- 3.0.20
- 3.0.19
- 3.0.18
- 3.0.17
- 3.0.16
- 3.0.15
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.1
- 1.0.0
- dev-Propaganistas-master
This package is auto-updated.
Last update: 2025-03-19 22:17:01 UTC
README
Adds a validator to Laravel for checking whether a given phone number isn't originating from disposable phone services. Uses the disposable numbers blacklist from iP1SMS/disposable-phone-numbers by default.
Installation
-
Run the Composer require command to install the package:
composer require tagmood/laravel-disposable-phone
-
If you don't use auto-discovery, open up your app config and add the Service Provider to the
$providers
array:'providers' => [ ... Tagmood\LaravelDisposablePhone\DisposablePhoneServiceProvider::class, ],
-
Publish the configuration file and adapt the configuration as desired:
php artisan vendor:publish --tag=laravel-disposable-phone
-
Run the following artisan command to fetch an up-to-date list of disposable numbers:
php artisan disposablephone:update
-
(optional) In your languages directory, add for each language an extra language line for the validator:
'indisposablephone' => 'Disposable phone numbers are not allowed.',
-
(optional) It's highly advised to update the disposable numbers list regularly. You can either run the command yourself now and then or, if you make use of Laravel's scheduler, include it over there (
App\Console\Kernel
):protected function schedule(Schedule $schedule) { $schedule->command('disposablephone:update')->weekly(); }
Usage
Use the indisposablephone
validator to ensure a given field doesn't hold a disposable phone number.
'field' => 'indisposablephone',
Custom fetches
By default the package retrieves a new list by using file_get_contents()
.
If your application has different needs (e.g. when behind a proxy) please review the disposable-phone.fetcher
configuration value.