Download the PHP package sirius-program/sirius-helpers without Composer
On this page you can find all versions of the php package sirius-program/sirius-helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sirius-program/sirius-helpers
More information about sirius-program/sirius-helpers
Files in sirius-program/sirius-helpers
Package sirius-helpers
Short Description This helper contain a lot of functions that can help you to build your apps.
License MIT
Homepage https://github.com/sirius-program/sirius-helpers
Informations about the package sirius-helpers
Sirius Helpers
This helper contain a lot of functions that can help you to build your apps.
Installation
You can install the package via composer:
Optionally, you can publish the config file with:
This is the contents of the published config file:
Or you can easly change them through .env
file.
Usage
More detail can be found below.
Testing
To test this package, you can run the following command:
or
Check Current Version
You can check what version of SiriusHelpers you are using right now by run a command:
There is one line like this you can see under the Environment
group:
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
String Helpers
This helpers contains a lot of functions that can help you to manipulate string.
Usage
You can use it from the Sirius instance:
Or use it straight from the StringHelpers instance:
There are 9 methods you can use to manipulate string:
encrypt
, decrypt
, urlSafe
, urlUnsafe
, isPartOfPhoneNumber
, toPhoneNumber
, sanitizePhoneNumber
, toInitials
, and toStr
.
encrypt(?string $salt = null)
This method will encrypt the string you give and implements an encryption method that uses AES-256-CBC encryption with a salt and an initialization vector to securely encrypt a string. The encrypted string is base64-encoded. By default this helper will use your APP_KEY
for the salt.
Code above will echo encrypted text: MwTMh2laUQDG09O9ZsVCv2c8pON/3IlIHf+8Dq55gkg=
decrypt(?string $salt = null)
This method will decrypt the chipertext you give and implements an dencryption method that uses AES-256-CBC encryption algorithm (see encrypt()
method above). By default this helper will use your APP_KEY
for the salt.
Code above will echo the depcrypted text: text you want to encrypt @ 123
urlSafe()
This method will transforms your string into a URL-safe format by replacing specific characters with alternative characters that are less likely to cause issues in URLs.
Code above will echo the URL-safe format text: MwTMh2laUQDG09O9ZsVCv2c8pON_3IlIHf.8Dq55gkg-
urlUnsafe()
This method will transforms your URL-safe string to it's initial text before you transforms it to the URL-safe string (see urlSafe()
method above).
Code above will echo the URL-safe format text: MwTMh2laUQDG09O9ZsVCv2c8pON/3IlIHf+8Dq55gkg=
isPartOfPhoneNumber(): bool
This method will check is the given string is part of phone number. It will remove plus signs (+), minus signs (-), parentheses, and spaces from the given string and check if the rest of the string is only contain number it will returns true, otherwise false.
Code above will return true
Code above will return false
toPhoneNumber(bool $zeroPrefix = false, ?string $countryCode = null)
This method will takes any phone number string, parses it, validates it, and formats it into more readable phone number style format. The default format will use a plus with country calling code prefix based on country code you set on the second parameter, or if it's null it will use the country code on your config in the sirius-helper.country_code
. If you want the formatted string prefixed with zero, set the $zeroPrefix
parameter to true
. This method relying on package libphonenumber under the hood.
Code above will echo the readable phone number text: +62 812-3456-789
sanitizePhoneNumber(bool $zeroPrefix = false, ?string $countryCode = null)
This method will takes any phone number string, sanitizes it, so you will get the 'only number' text from the text you provide.
Code above will echo the sanitized phone number text: 08123456789
toInitials(int $length = 2)
This method will convert your text into it's initials. The default length will be 2
, you can set it to 0
to return all the initials.
Code above will echo the initials text: SH
Code above will echo the initials text: SHBSP
toStr()
This method will convert your text into Laravel's Stringable instance
Method Chaining
Every method above (except for isPartOfPhoneNumber()
and toStr()
) return $this
, so you can also chain the methods like this:
Dumping Everywhere
You can do dump()
or dd()
in every method above.
For example:
Number Helpers
This helpers contains a lot of functions that can help you to manipulate number.
Usage
You can use it from the Sirius instance:
Or use it straight from the NumberHelpers instance:
There are 6 methods you can use to manipulate number:
toInt
, toFloat
, format
, toRoman
, toCurrency
, toCent
, fromCent
, and spell
.
toInt()
This method will convert your number into Integer.
Code above will echo 1234
toFloat()
This method will convert your number into Float.
Code above will echo 1234.56
format(?string $currencyLocale = null)
This method will add delimiter to your number based on your provided $currencyLocale
or currency locale you set on the config file. The default currency locale will be id_ID
if you don't provide any locale or if you don't set it on the config file.
Code above will echo 1.234.567,89
Code above will echo 1,234,567.89
toRoman()
This method will convert your number into roman numerals.
Code above will echo MCCXXXIV
toCurrency(?string $currencyLocale = null)
This method will convert your number into currency format. The default currency locale will be id_ID
if you don't provide any locale or if you don't set it on the config file.
Code above will echo Rp1.234.567,89
Code above will echo $1,234,567.89
toCent()
This method will convert your number into cent (times the given number by 100).
Code above will echo 123.456.789
fromCent(bool $impactOriginalNumber = true)
This method will devide the given number by 100. By default, this method's result will also impact the original number, if you want to keep the original number in cent, set the $impactOriginalNumber
parameter to false
.
Code above will echo 1234567.89
spell(?string $currencyLocale = null)
This method will spell out your number. The default currency locale will be id_ID
if you don't provide any locale or if you don't set it on the config file. Also the language will be spelled out based that same locale.
Code above will echo satu juta dua ratus tiga puluh empat ribu lima ratus enam puluh tujuh koma delapan sembilan
Code above will echo one million two hundred thirty-four thousand five hundred sixty-seven point eight nine
If you chained this method after toCurrency()
method, the result will be appended with the spelled currency symbol.
Code above will echo one million two hundred thirty-four thousand five hundred sixty-seven point eight nine dollars
Get the Original Number
You can always retrieve the original number.
Code above will echo 10000.05
Method Chaining
Every method above return $this
, so you can also chain the methods like this:
Dumping Everywhere
You can do dump()
or dd()
in every method above.
For example:
DateTime Helpers
This helpers contains a lot of functions that can help you to manipulate datetime string.
Usage
You can use it from the Sirius instance:
Or use it straight from the DateTimeHelpers instance:
There are 7 methods you can use to manipulate datetime string:
toDateTime
, toCarbon
, format
, toLongMonth
, toShortMonth
, toLongDay
, and toShortDay
.
toDateTime(string $fromFormat = 'Y-m-d H:i:s')
This method will convert your datetime string into PHP's DateTime
object.
toCarbon(string $fromFormat = 'Y-m-d H:i:s')
This method will convert your datetime string into nesbot's Carbon
object.
format(string $format = 'Y-m-d H:i:s')
This method will format your datetime string based on the $format
parameter. The provided datetime string must be converted into PHP's DateTime
object or nesbot's Carbon
object first.
toLongMonth()
This method will convert your datetime string into long month string. The provided datetime string can be in integer, datetime string (ex: '2024-01-01'), PHP's DateTime
, or nesbot's Carbon
object. This method will use the language based on your config in app.locale
.
Code above will echo December
toShortMonth()
This method will convert your datetime string into short month string. The provided datetime string can be in integer, datetime string (ex: '2024-01-01'), PHP's DateTime
, or nesbot's Carbon
object. This method will use the language based on your config in app.locale
.
Code above will echo Jan
toLongDay()
This method will convert your datetime string into long day string. The provided datetime string can be in integer, datetime string (ex: '2024-01-01'), PHP's DateTime
, or nesbot's Carbon
object. This method will use the language based on your config in app.locale
.
Code above will echo Saturday
toShortDay()
This method will convert your datetime string into short day string. The provided datetime string can be in integer, datetime string (ex: '2024-01-01'), PHP's DateTime
, or nesbot's Carbon
object. This method will use the language based on your config in app.locale
.
Code above will echo Mon
Get the Original DateTime String
You can always retrieve the original datetime string.
Code above will echo 2024-01-01
Method Chaining
Every method above return $this
, so you can also chain the methods like this:
Dumping Everywhere
You can do dump()
or dd()
in every method above.
For example:
Static Methods
This helpers contains 2 static methods: getAllMonths
, and getAllDays
. As the name says, these two methods will retrieve all months and days with the language based on your config in app.locale
.
These two methods accept 2 arguments: $formatter
and $format
. The default $formatter
will be new \IntlDateFormatter($locale, \IntlDateFormatter::FULL, \IntlDateFormatter::NONE)
and the default $format
will be MMMM
. You can find the other format symbol in ICU Documentation.
The $months
variable will be an array of this:
The $days
variable will be an array of this:
The getAllDays
method also accepts the 3rd argument $startingDay
. The default value will be constant START_WITH_SUNDAY
. You can set it to constant START_WITH_MONDAY
to make it start with Monday.
The $days
variable will be an array of this:
Other Static Helpers
There are 2 useful static methods that you can access from Sirius instance:
calculateDistanceInMeters
, and setNullIfBlank
.
calculateDistanceInMeters(float $latitudeFrom, float $longitudeFrom, float $latitudeTo, float $longitudeTo, float $earthRadius = 6371000): float
This method will calculate the distance between two points of latitude and logitude in meters. The default $earthRadius
will be 6371000
(in meters).
for example:
Code above will echo 926.0155020636498
setNullIfBlank(mixed $data, bool $keepZero = false, bool $keepEmptyArray = false, bool $keepEmptyString = false): mixed
This method will set null if the given data is either zero, empty array, or empty string. If the given data is in array (and it's not empty), this method will iterate and transform the data inside of it.
for example:
Code above will print [null, 1, null, 2, null, 3, null]
you can keep zero as zero, empty array as empty array and empty string as empty string by setting the $keepZero
, $keepEmptyArray
, and/or $keepEmptyString
parameter to true
.
getCountryDetail(string $countryCode): array
This method will hit an HTTP request to restcountries.com to get a various country detail in array, such as name and dailing code.
for example:
Code above will print ['code' => 'ID', 'name' => 'Indonesia', 'dailingCode' => '+62']
This request is cached forever with the name country-detail-$countryCode
, so if you find that the data you get from this request is not the same as in restcountries.com, try forget the cache first.
All versions of sirius-helpers with dependencies
giggsey/libphonenumber-for-php Version ^8.13
guzzlehttp/guzzle Version ^7.9
illuminate/contracts Version ^10.0||^11.0
spatie/laravel-package-tools Version ^1.16