Download the PHP package danharrin/squire without Composer

On this page you can find all versions of the php package danharrin/squire. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package squire

Laravel Squire v1.x πŸ“œ

NOTICE: This v1.x package has been deprecated in favour of v2.x and is no longer maintained. Learn more.

CI status

Squire is a library of static Eloquent models for fixture data that is commonly needed in web applications, such as countries, currencies and airports. It's built on top of Caleb Porzio's Sushi package.

Common use cases for Squire include:

Contents

Installing Squire

You can use Composer to install Squire into your application.

No additional setup is required.

Using a model

You can interact with a Squire model just like you would any other Eloquent model, except that it only handles read-only operations.

Available models

Squire\Models\Airline

Column Name Description Example
alias Alternative name of the airline. EasyJet Airline
call_sign Call sign of the airline. EASY
code_iata IATA code of the airline. u2
code_icao ICAO code of the airline. ezy
country_id ISO 3166-1 alpha-2 country code of the airline. gb
name Name of the airline. easyJet
Relationship name Model
country Squire\Models\Country
continent Squire\Models\Continent

Squire\Models\Airport

Column Name Description Example
code_gps GPS code of the airport. ayse
code_iata IATA code of the airport. nis
code_icao Local code of the airport. sbi
municipality Municipality of the airport. Simberi Island
name Name of the airport. Simberi Airport
region_id ISO 3166-2 region code of the airport. pg-nik
type Type of airport. small_airport
Relationship name Model
country Squire\Models\Country
region Squire\Models\Region

Squire\Models\Continent

Column Name Description Example
code Two letter continent code. na
name Continent name. North America
Relationship name Model
countries Squire\Models\Country
regions Squire\Models\Region

Squire\Models\Counties\GbCounty

Column Name Description Example
code ISO 3166-2 county code. gb-ess
name County name. Essex
region_id ISO 3166-2 region code of the county. gb-eng
Relationship name Model
region Squire\Models\Region

Squire\Models\Country

Column Name Description Example
calling_code E.164 country calling code. 1
capital_city Capital city of the country. Washington
code_2 ISO 3166-1 alpha-2 country code. us
code_3 ISO 3166-1 alpha-3 country code. usa
continent_id Two letter continent code of the country. na
currency_id ISO 4217 alphabetic currency code of the country. usd
flag Unicode flag of the country. πŸ‡ΊπŸ‡Έ
name Country name. United States
Relationship name Model
airlines Squire\Models\Airline
airports Squire\Models\Airport
continent Squire\Models\Continent
currency Squire\Models\Currency
regions Squire\Models\Region

Squire\Models\Currency

Column Name Description Example
code_alphabetic ISO 4217 alphabetic currency code. usd
code_numeric ISO 4217 numeric currency code. 840
decimal_digits Number of decimal digits to use when formatting this currency. 2
name Currency name. US Dollar
name_plural Plural currency name. US Dollars
rounding The formatting precison of this currency. 0
symbol International currency symbol. $
symbol_native Native currency symbol. $
Relationship name Model
countries Squire\Models\Country

Squire\Models\Region

Column Name Description Example
code ISO 3166-2 region code. us-ny
country_id ISO 3166-1 alpha-2 country code. us
name Region name. New York
Relationship name Model
airports Squire\Models\Airport
continent Squire\Models\Continent
country Squire\Models\Country
gbCounties Squire\Models\County\GbCounty

Model relationships

Implementing an Eloquent relationship between a model in your app and a Squire model is very simple. There are a couple of approaches you could take.

Using inheritance

The simplest option is to create a new model in your app, and let it extend the Squire model. Your new app model will now behave like the original Squire model, except you can register new methods and customise it to your liking:

See our section on model customisation for more customisation possibilities that are made available if you utilise this method.

Using resolveRelationUsing()

Another option is the resolveRelationUsing() method. This allows you to dynamically register a relationship for a Squire model from anywhere in your app, for example, within a service provider:

Column customisation

Squire allows you to customise the column names on any provided model.

Create a new model within your app and let it extend the Squire model that you would like to customise:

In this example, the App\Models\Country, extending the Squire\Models\Country model, has the calling_code column remapped to dial_code:

Contributing

If you have fixture data to contribute to the library, please open a pull request!

For reference, check out the existing models.


All versions of squire with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
calebporzio/sushi Version ^2.1
illuminate/database Version ^6.0 || ^7.0 || ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package danharrin/squire contains the following files

Loading the files please wait ....