update v 1.0.7.5

This commit is contained in:
Sujit Prasad
2016-06-13 20:41:55 +05:30
parent aa9786d829
commit 283d97e3ea
5078 changed files with 339851 additions and 175995 deletions

39
vendor/julien-c/iso3166/README.md vendored Normal file
View File

@@ -0,0 +1,39 @@
iso3166
=======
ISO 3166-1 alpha-2 mapping:
Get Country Name:
```php
echo Iso3166\Codes::country('FR');
// 'France'
```
Get Phone Code:
```php
echo Iso3166\Codes::phoneCode('FR');
// '33'
```
Get Continent Name:
```php
echo Iso3166\Codes::continent('EU');
// 'Europa'
```
Plus one super handy helper:
```php
echo Iso3166\Codes::countrySelector('class', 'name', 'FR');
```
will output:
```html
<select class="class" name="name">
<option value="AF">Afghanistan</option>
...
<option value="FR" selected>France</option>
...
</select>
```