Download the PHP package rogerthomas84/skinny without Composer

On this page you can find all versions of the php package rogerthomas84/skinny. 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 skinny

Build Status

Skinny PHP Library

Skinny provides a slim library for common PHP applications.

It's become more mature recently, and is used in some rather large applications.

Core Functionality

Routing

\Skinny\Router

A basic, yet effective router for applications.

Authentication

\Skinny\Auth

Extending the basic functionality of \Skinny\Storage this provides a basic method of storing and retrieving a users authentication status. Calling login() and logout() provides the core of the class

\Skinny\Auth\Service

By extending \Skinny\Auth\AdapterAbstract you can easily create simplified authentication for your applications.

Form

\Skinny\Form

This class provides a simple way of performing form validation at the controller level, without the bloat of a full form building library.

\Skinny\Form\Upload

Make uploads a breeze by using this simple method to upload files to a given folder

Session & Storage

\Skinny\Session

Controls the basic Session functionality that's needed for applications of any size. The primary goal of this class is to provide a simplistic interface to interact with session data.

\Skinny\Storage

Provides a Session Namespace approach to storing data for a users session.

Validators

\Skinny\Validate\Date

Validates a date is valid according to a format

\Skinny\Validate\EmailAddress

Validates an email address is a valid format

\Skinny\Validate\File\Image

Validates a given file location is an image

\Skinny\Validate\NotEmpty

Validates a given value isn't empty

\Skinny\Validate\StringLength

Validates a given string is a set value, or between set values

\Skinny\Validate\TwoKeysAreEqual

Validates a given string is the same as another field (when used as part of \Skinny\Form)

\Skinny\Validate\AlphaNumeric

Validates whether a string is alphanumeric, and optionally you can specify whether to allow spaces.

Cache

\Skinny\Cache\MemcacheService

Provides a better way to interact with Memcache

Filters

\Skinny\Filter\HtmlEntities

This class provides a simple way of using HTML Entities (Originally from Zend Framework)

\Skinny\Filter\ImageSize

This class extends the basic functionality to interact and manipulate an image size.


All versions of skinny with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
ext-iconv Version *
ext-gd Version *
ext-mbstring Version *
ext-ctype Version *
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 rogerthomas84/skinny contains the following files

Loading the files please wait ....