Download the PHP package bolt/pathogen without Composer

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

Pathogen

General-purpose path library for PHP.

NOTE: this is the Bolt fork of pathogen

It does not include nor work with the isolator package.

The most recent stable version is 0.6.1 Current build status image Current coverage status image

Installation and documentation

What is Pathogen?

Pathogen is a library for path manipulation. Pathogen supports file system paths including Unix and Windows style paths, but is truly a general-purpose path implementation, capable of representing URI paths and other path-like structures while providing a comprehensive API.

Table of contents

Pathogen concepts

Path parts

The overall structure of a Pathogen path can be broken down into smaller parts. This diagram shows some of these named parts as they apply to a typical path:

  A   A   ___ A ___
 / \ / \ /         \
/foo/bar/baz.qux.pop
         \_________/
            name
\__________________/
        path

A = atom

The 'name' portion can be further broken down as follows:

  NWE    E
/     \ / \
baz.qux.pop
\_/ \_____/
 NP   NS

NWE = name without extension
  E = extension
 NP = name prefix
 NS = name suffix

Path atoms

In Pathogen, a path consists of a sequence of 'atoms'. Atoms are the individual sections of the path hierarchy. Given the path /path/to/foo, the sequence of atoms would be path, to, foo. The slash character is referred to as the 'separator'.

The atoms . and .. have special meaning in Pathogen. The single dot (.) is referred to as the 'self atom' and is typically used to reference the current path. The double dot (..) is referred to as the 'parent atom' and is used to reference the path above the current one. Anyone familiar with typical file system paths should be familiar with their behaviour already.

Given a path instance, the atoms of the path can be determined as follows:

Path name

The 'name' section of a path is simply the last atom of a path. If a path has no atoms, its name is an empty string. Given a path instance, the name of the path can be determined like so:

Path name extensions

The name of a path can be further divided using extension separators (.). For example, given the path name foo.bar.baz, Pathogen can determine the 'name without extension' (foo.bar), the 'name prefix' (foo), the 'name suffix' (bar.baz), and the 'extension' (baz).

Given a path instance, the various sections can be retrieved as follows:

Trailing separators

Pathogen is capable of representing a path with a trailing separator (/). This is useful in the case that a trailing separator has a special meaning to some logic, such as the behaviour of the Unix cp command. The trailing separator support is purely for the use of developers utilizing Pathogen; it does not affect any logic used by Pathogen itself.

It is worth noting that all new path instances produced by Pathogen will strip any trailing slashes unless it is explicitly stated otherwise.

Absolute and relative paths

In Pathogen, absolute and relative paths are represented by two different classes. While both classes implement a common PathInterface, other methods are provided by the AbsolutePathInterface or the RelativePathInterface respectively.

This distinction provides, amongst other benefits, the ability to harness PHP's type hinting to restrict the type of path required:

Special paths

The 'root' path is considered the top-most absolute path, and is represented as a single separator with no atoms (/).

The 'self' path is considered to point to the 'current' path, and is represented as a single self atom (.).

Creating paths

Static factory methods

The easiest way to create a Pathogen path is via the use of static factory methods. To use this method effectively, simply choose the most appropriate class for the type of path:

In addition to the fromString() method, there are other factory methods, some common to all paths, others more specialized:

Factory objects

Pathogen provides factory classes for creating paths. All path factories implement PathFactoryInterface which allows a path to be created from various kinds of input.

A simple example of path factory usage is as follows:

Path resolution

Resolution of a path involves taking a path which may be relative or absolute, and figuring out where that path points to, given a known 'base' path. The result of path resolution will always be an absolute path.

For example, consider a current path of /path/to/foo. A relative path of bar/baz, will resolve to /path/to/foo/bar/baz against this path. Conversely, an absolute path of /path/to/qux will not change after resolution, as it is already an absolute path.

Resolution methods

The simplest way to achieve path resolution with Pathogen is to use the most appropriate method on a path:

Resolver objects

Path resolvers are also a standalone concept in Pathogen. A simple example of their usage follows:

Path normalization

Normalization of a path is the process of converting a path to its simplest or canonical form. This means resolving as many of the self and parent atoms as possible. For example, the path /path/to/foo/../bar normalizes to /path/to/bar.

Normalization works differently for absolute and relative paths. Absolute paths can always be resolved to a canonical form with no self or parent atoms. Relative paths can often be simplified, but may still contain these special atoms. For example, the path ../foo/../.. will actually normalize to ../...

Note that for absolute paths, the root path (/) is the top-most path to which parent atoms will normalize. That is, paths with more parent atoms than regular atoms, like /.., /../.., or /foo/../.. will all normalize to be the root path (/).

Normalization typically never takes place in Pathogen unless it is required for a calculation, or done manually through the API. If a normalized path is required for some reason, this is left to the developer to handle.

Normalize method

The simplest way to normalize a path is to use the normalize() method:

Normalizer objects

Path normalizers are also a standalone concept in Pathogen. A simple example of their usage follows:

File system paths

Pathogen provides support for dealing with file system paths in a platform agnostic way. There are two approaches supported by Pathogen, which can be applied depending on the situation.

The first approach is to inspect the path string and create an appropriate path instance based upon a 'best guess'. This is handled by the FileSystemPath class:

The second approach is to create paths based upon the current platform the code is running under. That is, when running under Linux or Unix, create Unix-style paths, and when running under Windows, create windows paths. This is handled by the PlatformFileSystemPath:

Note that FileSystemPath and PlatformFileSystemPath are only utility classes with static methods. The actual path class used will depend on the input. If it is necessary to type hint for a file system path, FileSystemPathInterface or one of its more specialized child interfaces should be used instead.

Immutability of paths

Paths in Pathogen are immutable, meaning that once they are created, they cannot be modified. When performing some mutating operation on a path, such as normalization or resolution, a new path instance is produced, rather than the original instance being altered. This allows a path to be exposed as part of an interface without creating a leaky abstraction.

Windows path support

Pathogen provides support for Windows paths. In addition to the methods available to Unix-style paths, Windows paths contain an optional drive specifier. The drive specifier is available via the drive() method:

Dependency consumer traits

Pathogen provides some traits to make consuming its services extremely simple for code targeting PHP 5.4 and higher.

The concept of a dependency consumer trait is simple. If a class requires, for example, a path factory, it can simply use a PathFactoryTrait. This gives the class setPathFactory() and pathFactory() methods for managing the path factory dependency.

This example demonstrates how to use the file system path factory trait:

Available dependency consumer traits

Usage examples

Resolving a user-provided path against the current working directory

Resolving a path against another arbitrary path

Determining whether one path exists inside another

Appending an extension to a path

Replacing a path's extension

Replacing a section of a path


All versions of pathogen with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
symfony/polyfill-mbstring Version ^1.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 bolt/pathogen contains the following files

Loading the files please wait ....