Файловый менеджер - Редактировать - /home/easybachat/hisabat365.com/4a7891/fakerphp.zip
Ðазад
PK @�)[M��3� � faker/rector-migrate.phpnu �[��� <?php declare(strict_types=1); use Faker\Generator; use Rector\Config; use Rector\Transform; // This file configures rector/rector to replace all deprecated property usages with their equivalent functions. return static function (Config\RectorConfig $rectorConfig): void { $properties = [ 'address', 'amPm', 'asciify', 'biasedNumberBetween', 'boolean', 'bothify', 'buildingNumber', 'century', 'chrome', 'city', 'citySuffix', 'colorName', 'company', 'companyEmail', 'companySuffix', 'country', 'countryCode', 'countryISOAlpha3', 'creditCardDetails', 'creditCardExpirationDate', 'creditCardExpirationDateString', 'creditCardNumber', 'creditCardType', 'currencyCode', 'date', 'dateTime', 'dateTimeAD', 'dateTimeBetween', 'dateTimeInInterval', 'dateTimeThisCentury', 'dateTimeThisDecade', 'dateTimeThisMonth', 'dateTimeThisYear', 'dayOfMonth', 'dayOfWeek', 'domainName', 'domainWord', 'e164PhoneNumber', 'email', 'emoji', 'file', 'firefox', 'firstName', 'firstNameFemale', 'firstNameMale', 'freeEmail', 'freeEmailDomain', 'getDefaultTimezone', 'hexColor', 'hslColor', 'hslColorAsArray', 'iban', 'image', 'imageUrl', 'imei', 'internetExplorer', 'iosMobileToken', 'ipv4', 'ipv6', 'iso8601', 'jobTitle', 'languageCode', 'lastName', 'latitude', 'lexify', 'linuxPlatformToken', 'linuxProcessor', 'localCoordinates', 'localIpv4', 'locale', 'longitude', 'macAddress', 'macPlatformToken', 'macProcessor', 'md5', 'month', 'monthName', 'msedge', 'name', 'numerify', 'opera', 'paragraph', 'paragraphs', 'passthrough', 'password', 'phoneNumber', 'postcode', 'randomAscii', 'randomDigitNotNull', 'randomElement', 'randomElements', 'randomHtml', 'randomKey', 'randomLetter', 'realText', 'realTextBetween', 'regexify', 'rgbColor', 'rgbColorAsArray', 'rgbCssColor', 'rgbaCssColor', 'safari', 'safeColorName', 'safeEmail', 'safeEmailDomain', 'safeHexColor', 'sentence', 'sentences', 'setDefaultTimezone', 'sha1', 'sha256', 'shuffle', 'shuffleArray', 'shuffleString', 'slug', 'streetAddress', 'streetName', 'streetSuffix', 'swiftBicNumber', 'text', 'time', 'timezone', 'title', 'titleFemale', 'titleMale', 'tld', 'toLower', 'toUpper', 'unixTime', 'url', 'userAgent', 'userName', 'uuid', 'windowsPlatformToken', 'word', 'words', 'year', ]; $rectorConfig->ruleWithConfiguration( Transform\Rector\Assign\PropertyFetchToMethodCallRector::class, array_map(static function (string $property): Transform\ValueObject\PropertyFetchToMethodCall { return new Transform\ValueObject\PropertyFetchToMethodCall( Generator::class, $property, $property, ); }, $properties), ); }; PK @�)[V���s s faker/src/autoload.phpnu �[��� <?php /** * Simple autoloader that follow the PHP Standards Recommendation #0 (PSR-0) * * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md for more informations. * * Code inspired from the SplClassLoader RFC * @see https://wiki.php.net/rfc/splclassloader#example_implementation */ spl_autoload_register(function ($className) { $className = ltrim($className, '\\'); $fileName = ''; if ($lastNsPos = strripos($className, '\\')) { $namespace = substr($className, 0, $lastNsPos); $className = substr($className, $lastNsPos + 1); $fileName = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR; } $fileName = __DIR__ . DIRECTORY_SEPARATOR . $fileName . $className . '.php'; if (file_exists($fileName)) { require $fileName; return true; } return false; }); PK @�)[_ױ� � * faker/src/Faker/Provider/es_ES/Payment.phpnu �[��� <?php namespace Faker\Provider\es_ES; class Payment extends \Faker\Provider\Payment { private static $vatMap = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'N', 'P', 'Q', 'R', 'S', 'U', 'V', 'W']; /** * International Bank Account Number (IBAN) * * @see http://en.wikipedia.org/wiki/International_Bank_Account_Number * * @param string $prefix for generating bank account number of a specific bank * @param string $countryCode ISO 3166-1 alpha-2 country code * @param int $length total length without country code and 2 check digits * * @return string */ public static function bankAccountNumber($prefix = '', $countryCode = 'ES', $length = null) { return static::iban($countryCode, $prefix, $length); } /** * Value Added Tax (VAT) * * @example 'B93694545' * * @see https://en.wikipedia.org/wiki/VAT_identification_number * @see https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal * * @return string VAT Number */ public static function vat() { $letter = static::randomElement(self::$vatMap); $number = static::numerify('########'); return $letter . $number; } } PK @�)[�U�p p + faker/src/Faker/Provider/es_ES/Internet.phpnu �[��� <?php namespace Faker\Provider\es_ES; class Internet extends \Faker\Provider\Internet { protected static $freeEmailDomain = ['gmail.com', 'hotmail.com', 'hotmail.es', 'yahoo.com', 'yahoo.es', 'live.com', 'hispavista.com', 'latinmail.com', 'terra.com']; protected static $tld = ['com', 'com', 'com', 'com', 'net', 'org', 'org', 'es', 'es', 'es', 'com.es']; } PK @�)[�&