2017 © Pedro Peláez
 

library core

The XP framework is an all-purpose, object oriented PHP framework.

image

xp-framework/core

The XP framework is an all-purpose, object oriented PHP framework.

  • Friday, July 27, 2018
  • by thekid
  • Repository
  • 18 Watchers
  • 11 Stars
  • 53,620 Installations
  • PHP
  • 75 Dependents
  • 1 Suggesters
  • 6 Forks
  • 4 Open issues
  • 100 Versions
  • 9 % Grown

The README.md

XP Framework Core

Build status on GitHub Build status on AppVeyor BSD License Requires PHP 7.4+ Supports PHP 8.0+ Latest Stable Version, (*1)

This is the XP Framework's development checkout., (*2)

Installation

If you just want to use the XP Framework, grab a release using composer require xp-framework/core. If you wish to use this development checkout, clone this repository instead., (*3)

Runners

The entry point for software written in the XP Framework is not the PHP interpreter's CLI / web server API but either a command line runner or a specialized web entry point. These runners can be installed by using the following one-liner:, (*4)

$ cd ~/bin
$ curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/i/installer/setup-9.1.0.sh | sh

Using it

To use the the XP Framework development checkout, put the following in your ~/bin/xp.ini file:, (*5)

use=/path/to/xp/core

Finally, start xp -v to see it working:, (*6)

$ xp -v
XP 12.6.2-dev { PHP/8.4.11 & Zend/4.4.11 } @ Windows NT SURFACE 10.0 build 26100 (Windows 11) AMD64
Copyright (c) 2001-2025 the XP group
FileSystemCL<./src/main/php>
FileSystemCL<./src/test/php>
FileSystemCL<./src/main/resources>
FileSystemCL<./src/test/resources>
FileSystemCL<.>

Basic usage

The XP Framework runs scripts or classes., (*7)

Hello World

Save the following sourcecode to a file called ageindays.script.php:, (*8)

<?php namespace examples;

use util\{Date, Dates};
use util\cmd\Console;

$span= Dates::diff(new Date($argv[1]), Date::now());
Console::writeLine('Hey, you are ', $span->getDays(), ' days old');

Now run it:, (*9)

$ xp ageindays.script.php 1977-12-14
Hey, you are 16015 days old

Alternatively, you can put this code inside a class and give it a static main method. This way, you can use features like inheritance, trait inclusion etcetera. This time, save the code to a file called AgeInDays.class.php., (*10)

<?php

use util\{Date, Dates};
use util\cmd\Console;

class AgeInDays {

  public static function main(array $args): int {
    $span= Dates::diff(new Date($args[0]), Date::now());
    Console::writeLine('Hey, you are ', $span->getDays(), ' days old');
    return 0;
  }
}

Note the arguments have shifted by one: If you want the class' name, simply use self::class!, (*11)

$ xp AgeInDays 1977-12-14
Hey, you are 16015 days old

Contributing

To contribute, use the GitHub way - fork, hack, and submit a pull request! :octocat:, (*12)

Enjoy!, (*13)

The Versions

27/07 2018

dev-master

9999999-dev http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

27/07 2018

v9.5.2

9.5.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

10/06 2018

v9.5.1

9.5.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

08/06 2018

v9.5.0

9.5.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

27/05 2018

v9.4.1

9.4.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

v9.4.0

9.4.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

dev-rfc/329

dev-rfc/329 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

dev-refactor/remove-stringof

dev-refactor/remove-stringof http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

dev-rfc/328

dev-rfc/328 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

v9.3.2

9.3.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

02/04 2018

dev-refactor/remove-registry

dev-refactor/remove-registry http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

30/03 2018

dev-feature/php-jit

dev-feature/php-jit http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

30/03 2018

v9.3.1

9.3.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

05/12 2017

v9.3.0

9.3.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

28/10 2017

v9.2.0

9.2.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

24/09 2017

v9.1.0

9.1.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

24/09 2017

v9.0.0

9.0.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

30/08 2017

dev-six

dev-six http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

30/08 2017

v6.13.2

6.13.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

28/06 2017

dev-feature/secret-matches

dev-feature/secret-matches http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

28/05 2017

dev-eight

dev-eight http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

28/05 2017

v8.2.0

8.2.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

16/04 2017

v8.1.2

8.1.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

16/01 2017

v8.1.1

8.1.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

18/12 2016

v8.1.0

8.1.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

06/10 2016

dev-seven

dev-seven http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

06/10 2016

v7.8.0

7.8.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

29/08 2016

v8.0.0

8.0.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=7.0.0

 

framework xp

29/08 2016

v7.7.0

7.7.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

28/08 2016

v7.6.1

7.6.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

14/08 2016

v7.6.0

7.6.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

24/07 2016

v7.5.0

7.5.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

04/06 2016

v7.4.0

7.4.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

07/05 2016

v6.13.1

6.13.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

07/05 2016

v7.3.1

7.3.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

06/05 2016

v6.13.0

6.13.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

05/05 2016

v7.3.0

7.3.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

05/05 2016

v6.12.0

6.12.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

22/04 2016

v6.11.4

6.11.4.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

03/04 2016

v7.2.1

7.2.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

29/03 2016

v6.11.3

6.11.3.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

18/03 2016

v6.11.2

6.11.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

15/03 2016

dev-v6.3.4-backports

dev-v6.3.4-backports http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

15/03 2016

v6.3.7

6.3.7.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

15/03 2016

v6.11.1

6.11.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

15/03 2016

dev-fix/mpb-static-init

dev-fix/mpb-static-init http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

27/02 2016

v7.2.0

7.2.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

23/02 2016

v7.1.2

7.1.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

22/02 2016

v7.1.1

7.1.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

18/02 2016

v6.11.0

6.11.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

14/02 2016

v7.1.0

7.1.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

07/02 2016

v7.0.1

7.0.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

01/02 2016

v7.0.0

7.0.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0

 

framework xp

27/01 2016

v6.10.3

6.10.3.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

17/01 2016

v6.10.2

6.10.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

12/01 2016

v6.10.1

6.10.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

10/01 2016

v6.10.0

6.10.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

05/01 2016

v6.9.2

6.9.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

28/12 2015

v6.9.1

6.9.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

24/12 2015

v6.9.0

6.9.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

20/12 2015

v6.8.0

6.8.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

09/12 2015

v6.7.0

6.7.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

23/11 2015

v6.6.0

6.6.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

25/10 2015

v6.5.6

6.5.6.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

12/10 2015

v6.3.6

6.3.6.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

07/10 2015

v6.5.5

6.5.5.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

29/09 2015

v6.3.5

6.3.5.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

27/09 2015

v6.5.4

6.5.4.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

27/09 2015

v6.5.3

6.5.3.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

04/09 2015

v6.5.2

6.5.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

25/08 2015

v6.5.1

6.5.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

22/08 2015

v6.5.0

6.5.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.5.0

 

framework xp

05/08 2015

v6.4.2

6.4.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

05/08 2015

v6.4.1

6.4.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

12/07 2015

v6.4.0

6.4.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

26/06 2015

v6.3.4

6.3.4.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

24/06 2015

v6.3.3

6.3.3.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

23/06 2015

v6.3.2

6.3.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

13/06 2015

v6.3.1

6.3.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

02/06 2015

6.3.4.x-dev

6.3.4.9999999-dev http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

02/06 2015

v6.3.0

6.3.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

25/05 2015

v6.2.5

6.2.5.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

23/05 2015

v6.2.4

6.2.4.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

18/05 2015

v6.2.3

6.2.3.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

17/05 2015

v6.2.2

6.2.2.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

14/05 2015

v6.2.1

6.2.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

05/05 2015

v6.2.0

6.2.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

25/04 2015

v6.1.1

6.1.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

06/04 2015

v6.1.0

6.1.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

27/02 2015

v6.0.1

6.0.1.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

13/02 2015

dev-feature/latest-runner

dev-feature/latest-runner http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

08/02 2015

v6.0.0

6.0.0.0 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

06/01 2015

v6.0.0beta3

6.0.0.0-beta3 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

01/11 2014

v6.0.0beta2

6.0.0.0-beta2 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

13/10 2014

v6.0.0beta1

6.0.0.0-beta1 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

framework xp

21/09 2014

v6.0.0alpha7

6.0.0.0-alpha7 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

07/09 2014

v6.0.0alpha6

6.0.0.0-alpha6 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

06/09 2014

v6.0.0alpha5

6.0.0.0-alpha5 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

05/09 2014

v6.0.0alpha4

6.0.0.0-alpha4 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0

 

01/09 2014

v6.0.0alpha3

6.0.0.0-alpha3 http://xp-framework.net/

The XP framework is an all-purpose, object oriented PHP framework.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0