From 54b1a70249ba5001ae11331ccc2cab124f3d7fe5 Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Sat, 22 Dec 2018 23:42:39 +0100 Subject: [PATCH] :package: (mvc) switch to zf1s zf1 --- airtime_mvc/application/airtime-boot.php | 4 +- .../rest/controllers/MediaController.php | 3 +- airtime_mvc/public/index.php | 4 +- airtime_mvc/public/setup/database-setup.php | 2 +- airtime_mvc/tests/application/bootstrap.php | 3 +- composer.json | 27 +- composer.lock | 1708 ++++++++++++++++- 7 files changed, 1684 insertions(+), 67 deletions(-) diff --git a/airtime_mvc/application/airtime-boot.php b/airtime_mvc/application/airtime-boot.php index 97c00678d..e425fe37e 100644 --- a/airtime_mvc/application/airtime-boot.php +++ b/airtime_mvc/application/airtime-boot.php @@ -64,10 +64,10 @@ set_include_path(APPLICATION_PATH . '/common/' . PATH_SEPARATOR . get_include_pa require_once 'autoload.php'; /** Zend_Application */ -require_once 'Zend/Application.php'; $application = new Zend_Application( APPLICATION_ENV, - CONFIG_PATH . 'application.ini' + CONFIG_PATH . 'application.ini', + true ); require_once(APPLICATION_PATH . "logging/Logging.php"); diff --git a/airtime_mvc/application/modules/rest/controllers/MediaController.php b/airtime_mvc/application/modules/rest/controllers/MediaController.php index 79208f56c..8444e1841 100644 --- a/airtime_mvc/application/modules/rest/controllers/MediaController.php +++ b/airtime_mvc/application/modules/rest/controllers/MediaController.php @@ -130,7 +130,8 @@ class Rest_MediaController extends Zend_Rest_Controller try { // REST uploads are not from Zend_Form, hence we handle them using Zend_File_transfer directly - $upload = new Zend_File_Transfer(); + // we need to specify an explicit adapter since autodetection broke in php 7.2 + $upload = new Zend_File_Transfer('Zend_File_Transfer_Adapter_Http'); // this error should not really get hit, letting the user know if it does is nice for debugging // see: https://github.com/LibreTime/libretime/issues/3#issuecomment-281143417 if (!$upload->isValid('file')) { diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index c3a4d6e43..d03321107 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -38,8 +38,8 @@ define('AIRTIME_CONFIG', 'airtime.conf'); //Rest Module Controllers - for custom Rest_RouteController.php set_include_path(REST_MODULE_CONTROLLER_PATH . PATH_SEPARATOR . get_include_path()); -//Vendors (Composer) -set_include_path(VENDOR_PATH . PATH_SEPARATOR . get_include_path()); +// Vendors (Composer, zend-loader is explicitly specified due to https://github.com/zf1/zend-application/pull/2#issuecomment-102599655) +set_include_path(VENDOR_PATH . PATH_SEPARATOR . VENDOR_PATH . 'zf1s/zend-loader/library/' . PATH_SEPARATOR . get_include_path()); // Ensure library/ is on include_path set_include_path(LIB_PATH . PATH_SEPARATOR . get_include_path()); diff --git a/airtime_mvc/public/setup/database-setup.php b/airtime_mvc/public/setup/database-setup.php index c26878687..17038ac74 100644 --- a/airtime_mvc/public/setup/database-setup.php +++ b/airtime_mvc/public/setup/database-setup.php @@ -127,7 +127,7 @@ class DatabaseSetup extends Setup { */ private function createDatabase() { $statement = self::$dbh->prepare("CREATE DATABASE " . pg_escape_string(self::$_properties["dbname"]) - . " WITH ENCODING 'UTF8' TEMPLATE template0" + . " WITH ENCODING 'UNICODE' TEMPLATE template0" . " OWNER " . pg_escape_string(self::$_properties["dbuser"])); if (!$statement->execute()) { throw new AirtimeDatabaseException("There was an error creating the database!", diff --git a/airtime_mvc/tests/application/bootstrap.php b/airtime_mvc/tests/application/bootstrap.php index 06b4b0dcf..857399f1e 100644 --- a/airtime_mvc/tests/application/bootstrap.php +++ b/airtime_mvc/tests/application/bootstrap.php @@ -30,7 +30,8 @@ set_include_path(implode(PATH_SEPARATOR, array( // Ensure vendor/ is on the include path set_include_path(implode(PATH_SEPARATOR, array( get_include_path(), - realpath(APPLICATION_PATH . '/../../vendor') + realpath(APPLICATION_PATH . '/../../vendor'), + realpath(APPLICATION_PATH . '/../../vendor/zf1s/zend-loader/library') ))); set_include_path(implode(PATH_SEPARATOR, array( diff --git a/composer.json b/composer.json index 9bcfc9b4a..cd17426a0 100644 --- a/composer.json +++ b/composer.json @@ -12,12 +12,33 @@ "ise/php-soundcloud": "3.0.1", "massivescale/celery-php": "2.0.*@dev", "simplepie/simplepie": "dev-master", - "zendframework/zendframework1": "^1.12", + "zf1s/zend-application": "^1.12", "composer/semver": "^1.4", - "php-amqplib/php-amqplib": "^2.6" + "php-amqplib/php-amqplib": "^2.6", + "zf1s/zend-acl": "^1.12", + "zf1s/zend-session": "^1.12", + "zf1s/zend-navigation": "^1.12", + "zf1s/zend-controller": "^1.12", + "zf1s/zend-log": "^1.12", + "zf1s/zend-version": "^1.12", + "zf1s/zend-rest": "dev-master@dev", + "zf1s/zend-layout": "^1.12", + "zf1s/zend-loader": "dev-master@dev", + "zf1s/zend-auth": "^1.12", + "zf1s/zend-filter": "^1.12", + "zf1s/zend-json": "^1.12", + "zf1s/zend-form": "^1.12", + "zf1s/zend-db": "^1.12", + "zf1s/zend-file": "^1.12", + "zf1s/zend-file-transfer": "^1.12", + "zf1s/zend-http": "^1.12", + "zf1s/zend-date": "^1.12", + "zf1s/zend-validate": "dev-master@dev", + "zf1s/zend-cache": "dev-master@dev" }, "require-dev": { "phpunit/phpunit": "^4.3", - "phpunit/dbunit": "^2.0" + "phpunit/dbunit": "^2.0", + "zf1s/zend-test": "^1.12" } } diff --git a/composer.lock b/composer.lock index adce81daf..b91e8284b 100644 --- a/composer.lock +++ b/composer.lock @@ -1,11 +1,10 @@ { "_readme": [ "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "hash": "0e4eedf77a6c56350bfc8f9c4a193f48", - "content-hash": "e85c1a0029cb2b6f1d1c6bf4ef399e7b", + "content-hash": "e324d9c2d063b379331a64aab1a42e53", "packages": [ { "name": "aws/aws-sdk-php", @@ -72,7 +71,7 @@ "s3", "sdk" ], - "time": "2014-12-08 21:56:46" + "time": "2014-12-08T21:56:46+00:00" }, { "name": "composer/semver", @@ -134,7 +133,7 @@ "validation", "versioning" ], - "time": "2016-08-30 16:08:34" + "time": "2016-08-30T16:08:34+00:00" }, { "name": "guzzle/guzzle", @@ -230,7 +229,7 @@ "web service" ], "abandoned": "guzzlehttp/guzzle", - "time": "2015-03-18 18:23:50" + "time": "2015-03-18T18:23:50+00:00" }, { "name": "ise/php-soundcloud", @@ -278,7 +277,7 @@ "keywords": [ "soundcloud" ], - "time": "2014-02-03 15:49:00" + "time": "2014-02-03T15:49:00+00:00" }, { "name": "massivescale/celery-php", @@ -331,7 +330,7 @@ "queue", "task" ], - "time": "2015-04-17 10:58:54" + "time": "2015-04-17T10:58:54+00:00" }, { "name": "phing/phing", @@ -423,7 +422,7 @@ "task", "tool" ], - "time": "2015-08-24 21:02:12" + "time": "2015-08-24T21:02:12+00:00" }, { "name": "php-amqplib/php-amqplib", @@ -493,7 +492,7 @@ "queue", "rabbitmq" ], - "time": "2016-04-11 14:30:01" + "time": "2016-04-11T14:30:01+00:00" }, { "name": "predis/predis", @@ -543,7 +542,7 @@ "predis", "redis" ], - "time": "2015-07-30 18:34:15" + "time": "2015-07-30T18:34:15+00:00" }, { "name": "propel/propel1", @@ -606,7 +605,7 @@ "orm", "persistence" ], - "time": "2013-10-21 12:52:56" + "time": "2013-10-21T12:52:56+00:00" }, { "name": "raven/raven", @@ -661,7 +660,7 @@ "logging" ], "abandoned": "sentry/sentry", - "time": "2015-05-19 20:20:08" + "time": "2015-05-19T20:20:08+00:00" }, { "name": "simplepie/simplepie", @@ -673,7 +672,7 @@ }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplepie/simplepie/zipball/0e8fe72132dad765d25db4cabc69a91139af1263", + "url": "https://api.github.com/repos/simplepie/simplepie/zipball/eb6dd2d578dd62a1eec68b60cdda8c4a38a8de49", "reference": "eb6dd2d578dd62a1eec68b60cdda8c4a38a8de49", "shasum": "" }, @@ -721,7 +720,7 @@ "feeds", "rss" ], - "time": "2017-02-28 01:12:12" + "time": "2017-02-28T01:12:12+00:00" }, { "name": "symfony/event-dispatcher", @@ -779,55 +778,1545 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2015-08-24 07:13:45" + "time": "2015-08-24T07:13:45+00:00" }, { - "name": "zendframework/zendframework1", + "name": "zf1s/zend-acl", "version": "1.12.20", "source": { "type": "git", - "url": "https://github.com/zendframework/zf1.git", - "reference": "737ef159654fbbef37cf9af742b2c8f9690c2ece" + "url": "https://github.com/zf1s/zend-acl.git", + "reference": "4621ae78c2ddf27782e3b5e830fc508a3e89d73d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zf1/zipball/737ef159654fbbef37cf9af742b2c8f9690c2ece", - "reference": "737ef159654fbbef37cf9af742b2c8f9690c2ece", + "url": "https://api.github.com/repos/zf1s/zend-acl/zipball/4621ae78c2ddf27782e3b5e830fc508a3e89d73d", + "reference": "4621ae78c2ddf27782e3b5e830fc508a3e89d73d", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-acl": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Acl": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Acl package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "acl", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:56+00:00" + }, + { + "name": "zf1s/zend-application", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-application.git", + "reference": "fee83db49953e7bbda14079b37749c836ba6f516" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-application/zipball/fee83db49953e7bbda14079b37749c836ba6f516", + "reference": "fee83db49953e7bbda14079b37749c836ba6f516", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-controller": "^1.12", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-application": "^1.12" + }, + "suggest": { + "zf1s/zend-config": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Application": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Application package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "application", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:56+00:00" + }, + { + "name": "zf1s/zend-auth", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-auth.git", + "reference": "7041ef3ceddb23bd5ba1541c3fc9c034e6f2acbe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-auth/zipball/7041ef3ceddb23bd5ba1541c3fc9c034e6f2acbe", + "reference": "7041ef3ceddb23bd5ba1541c3fc9c034e6f2acbe", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-auth": "^1.12" + }, + "suggest": { + "zf1s/zend-db": "Used in special situations or with special adapters", + "zf1s/zend-infocard": "Used in special situations or with special adapters", + "zf1s/zend-ldap": "Used in special situations or with special adapters", + "zf1s/zend-openid": "Used in special situations or with special adapters", + "zf1s/zend-session": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Auth": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Auth package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "auth", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:57+00:00" + }, + { + "name": "zf1s/zend-cache", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-cache.git", + "reference": "3284983138a3264a0c921bacbd548668a20f0056" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-cache/zipball/3284983138a3264a0c921bacbd548668a20f0056", + "reference": "3284983138a3264a0c921bacbd548668a20f0056", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-cache": "^1.12" + }, + "suggest": { + "zf1s/zend-log": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Cache": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Cache package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "cache", + "framework", + "zend" + ], + "time": "2017-12-12T10:51:05+00:00" + }, + { + "name": "zf1s/zend-config", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-config.git", + "reference": "2159b3f0cfc7dcd44ff276d6bbb5c5b083f1c810" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-config/zipball/2159b3f0cfc7dcd44ff276d6bbb5c5b083f1c810", + "reference": "2159b3f0cfc7dcd44ff276d6bbb5c5b083f1c810", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-config": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Config": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Config package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "config", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:58+00:00" + }, + { + "name": "zf1s/zend-controller", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-controller.git", + "reference": "ab8244f3b919b7333c1e14729a0a50a0eccb33b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-controller/zipball/ab8244f3b919b7333c1e14729a0a50a0eccb33b8", + "reference": "ab8244f3b919b7333c1e14729a0a50a0eccb33b8", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-config": "^1.12", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-registry": "^1.12", + "zf1s/zend-uri": "^1.12", + "zf1s/zend-view": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-controller": "^1.12" + }, + "suggest": { + "zf1s/zend-dojo": "Used in special situations or with special adapters", + "zf1s/zend-filter": "Used in special situations or with special adapters", + "zf1s/zend-json": "Used in special situations or with special adapters", + "zf1s/zend-layout": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Controller": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Controller package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "controller", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:58+00:00" + }, + { + "name": "zf1s/zend-crypt", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-crypt.git", + "reference": "a088caf86df8e75f8f59ac946172abb935cecd75" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-crypt/zipball/a088caf86df8e75f8f59ac946172abb935cecd75", + "reference": "a088caf86df8e75f8f59ac946172abb935cecd75", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-crypt": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Crypt": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Crypt package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "crypt", + "framework", + "zend" + ], + "time": "2016-10-23T08:21:02+00:00" + }, + { + "name": "zf1s/zend-date", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-date.git", + "reference": "ea91e9dca361a863b4bc72e64ef6b8d13b155479" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-date/zipball/ea91e9dca361a863b4bc72e64ef6b8d13b155479", + "reference": "ea91e9dca361a863b4bc72e64ef6b8d13b155479", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-locale": "^1.12" + }, + "replace": { + "zf1/zend-date": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Date": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Date package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "date", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:59+00:00" + }, + { + "name": "zf1s/zend-db", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-db.git", + "reference": "5e8123967ffc51531337a1d21c5c34305520f1d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-db/zipball/5e8123967ffc51531337a1d21c5c34305520f1d0", + "reference": "5e8123967ffc51531337a1d21c5c34305520f1d0", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12" + }, + "replace": { + "zf1/zend-db": "^1.12" + }, + "suggest": { + "zf1s/zend-registry": "Used in special situations or with special adapters", + "zf1s/zend-wildfire": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Db": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Db package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "db", + "framework", + "zend" + ], + "time": "2016-10-23T08:15:59+00:00" + }, + { + "name": "zf1s/zend-exception", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-exception.git", + "reference": "988509ff6516efbe0f1531aeb6f0f76eaeab658c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-exception/zipball/988509ff6516efbe0f1531aeb6f0f76eaeab658c", + "reference": "988509ff6516efbe0f1531aeb6f0f76eaeab658c", "shasum": "" }, "require": { "php": ">=5.2.11" }, - "require-dev": { - "phpunit/dbunit": "1.3.*", - "phpunit/phpunit": "3.7.*" + "replace": { + "zf1/zend-exception": "^1.12" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-0": { - "Zend_": "library/" + "Zend_Exception": "library/" } }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "library/" - ], "license": [ "BSD-3-Clause" ], - "description": "Zend Framework 1", + "description": "Zend Framework 1 Exception package", "homepage": "http://framework.zend.com/", "keywords": [ "ZF1", - "framework" + "exception", + "framework", + "zend" ], - "abandoned": "zendframework/zendframework", - "time": "2016-09-08 14:50:34" + "time": "2016-10-23T08:16:00+00:00" + }, + { + "name": "zf1s/zend-file", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-file.git", + "reference": "5a8710904df02e9d4a6914551bf1ea93bc55e916" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-file/zipball/5a8710904df02e9d4a6914551bf1ea93bc55e916", + "reference": "5a8710904df02e9d4a6914551bf1ea93bc55e916", + "shasum": "" + }, + "require": { + "php": ">=5.2.11" + }, + "replace": { + "zf1/zend-file": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_File": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 File package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "file", + "framework", + "zend" + ], + "time": "2016-10-23T08:16:01+00:00" + }, + { + "name": "zf1s/zend-file-transfer", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-file-transfer.git", + "reference": "6b9a7b98852f9a5365f3c47812ad91c014a07db3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-file-transfer/zipball/6b9a7b98852f9a5365f3c47812ad91c014a07db3", + "reference": "6b9a7b98852f9a5365f3c47812ad91c014a07db3", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-file-transfer": "^1.12" + }, + "suggest": { + "zf1s/zend-loader": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_File_Transfer": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 File Transfer package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "file", + "framework", + "transfer", + "zend" + ], + "time": "2016-10-23T08:16:01+00:00" + }, + { + "name": "zf1s/zend-filter", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-filter.git", + "reference": "6ddfb4558e8a9bfb11c32e9a847b6b536370a4c6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-filter/zipball/6ddfb4558e8a9bfb11c32e9a847b6b536370a4c6", + "reference": "6ddfb4558e8a9bfb11c32e9a847b6b536370a4c6", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-crypt": "^1.12", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-validate": "^1.12" + }, + "replace": { + "zf1/zend-filter": "^1.12" + }, + "suggest": { + "zf1s/zend-locale": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Filter": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Filter package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "filter", + "framework", + "zend" + ], + "time": "2016-10-23T08:16:01+00:00" + }, + { + "name": "zf1s/zend-form", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-form.git", + "reference": "17a61041f0d6d7ccef781dea67311c8da8ca26ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-form/zipball/17a61041f0d6d7ccef781dea67311c8da8ca26ec", + "reference": "17a61041f0d6d7ccef781dea67311c8da8ca26ec", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-filter": "^1.12", + "zf1s/zend-validate": "^1.12" + }, + "replace": { + "zf1/zend-form": "^1.12" + }, + "suggest": { + "zf1s/zend-captcha": "Used in special situations or with special adapters", + "zf1s/zend-controller": "Used in special situations or with special adapters", + "zf1s/zend-json": "Used in special situations or with special adapters", + "zf1s/zend-loader": "Used in special situations or with special adapters", + "zf1s/zend-registry": "Used in special situations or with special adapters", + "zf1s/zend-session": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Form": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Form package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "form", + "framework", + "zend" + ], + "time": "2016-10-23T09:45:33+00:00" + }, + { + "name": "zf1s/zend-http", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-http.git", + "reference": "2bfa8032682f3a0f7a0f5c1872b3378b290806f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-http/zipball/2bfa8032682f3a0f7a0f5c1872b3378b290806f1", + "reference": "2bfa8032682f3a0f7a0f5c1872b3378b290806f1", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-uri": "^1.12" + }, + "replace": { + "zf1/zend-http": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Http": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Http package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "http", + "zend" + ], + "time": "2016-10-23T08:16:02+00:00" + }, + { + "name": "zf1s/zend-json", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-json.git", + "reference": "f1da5ccf8ce182f56eb31fb0d702f977e5d51847" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-json/zipball/f1da5ccf8ce182f56eb31fb0d702f977e5d51847", + "reference": "f1da5ccf8ce182f56eb31fb0d702f977e5d51847", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-server": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-json": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Json": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Json package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "json", + "zend" + ], + "time": "2016-10-23T08:16:02+00:00" + }, + { + "name": "zf1s/zend-layout", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-layout.git", + "reference": "8eb7214a3a84abc351842ff25d6d03bce7ed6cec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-layout/zipball/8eb7214a3a84abc351842ff25d6d03bce7ed6cec", + "reference": "8eb7214a3a84abc351842ff25d6d03bce7ed6cec", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-layout": "^1.12" + }, + "suggest": { + "zf1s/zend-controller": "Used in special situations or with special adapters", + "zf1s/zend-filter": "Used in special situations or with special adapters", + "zf1s/zend-loader": "Used in special situations or with special adapters", + "zf1s/zend-view": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Layout": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Layout package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "layout", + "zend" + ], + "time": "2016-10-23T08:16:02+00:00" + }, + { + "name": "zf1s/zend-loader", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-loader.git", + "reference": "549a24e1a2e251600fc031d498ca1d97be716408" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-loader/zipball/549a24e1a2e251600fc031d498ca1d97be716408", + "reference": "549a24e1a2e251600fc031d498ca1d97be716408", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-loader": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Loader": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Loader package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "loader", + "zend" + ], + "time": "2018-12-31T18:11:12+00:00" + }, + { + "name": "zf1s/zend-locale", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-locale.git", + "reference": "3797bd7c6703d6ec5a4a987c58fb37b988aeec9c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-locale/zipball/3797bd7c6703d6ec5a4a987c58fb37b988aeec9c", + "reference": "3797bd7c6703d6ec5a4a987c58fb37b988aeec9c", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-cache": "^1.12", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-registry": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-locale": "^1.12" + }, + "suggest": { + "zf1s/zend-registry": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Locale": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Locale package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "locale", + "zend" + ], + "time": "2016-10-23T09:44:57+00:00" + }, + { + "name": "zf1s/zend-log", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-log.git", + "reference": "cfb2603c6f1ffc0def0caf222e57fe2b9a7d80aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-log/zipball/cfb2603c6f1ffc0def0caf222e57fe2b9a7d80aa", + "reference": "cfb2603c6f1ffc0def0caf222e57fe2b9a7d80aa", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-log": "^1.12" + }, + "suggest": { + "zf1s/zend-wildfire": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Log": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Log package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "log", + "zend" + ], + "time": "2016-10-23T08:16:04+00:00" + }, + { + "name": "zf1s/zend-navigation", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-navigation.git", + "reference": "6c315367a7cc96a03200d3dc5f759e7b20ee7d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-navigation/zipball/6c315367a7cc96a03200d3dc5f759e7b20ee7d71", + "reference": "6c315367a7cc96a03200d3dc5f759e7b20ee7d71", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-controller": "^1.12", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-navigation": "^1.12" + }, + "suggest": { + "zf1s/zend-acl": "Used in special situations or with special adapters", + "zf1s/zend-config": "Used in special situations or with special adapters", + "zf1s/zend-view": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Navigation": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Navigation package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "navigation", + "zend" + ], + "time": "2016-10-23T08:16:05+00:00" + }, + { + "name": "zf1s/zend-registry", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-registry.git", + "reference": "f87628e99b84098483e06eb057f29831dc768a7e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-registry/zipball/f87628e99b84098483e06eb057f29831dc768a7e", + "reference": "f87628e99b84098483e06eb057f29831dc768a7e", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-registry": "^1.12" + }, + "suggest": { + "zf1s/zend-loader": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Registry": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Registry package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "registry", + "zend" + ], + "time": "2016-10-23T08:16:07+00:00" + }, + { + "name": "zf1s/zend-rest", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-rest.git", + "reference": "f676341089db049f6e44fbb25b0790b9d174a508" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-rest/zipball/f676341089db049f6e44fbb25b0790b9d174a508", + "reference": "f676341089db049f6e44fbb25b0790b9d174a508", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-server": "^1.12", + "zf1s/zend-service": "^1.12", + "zf1s/zend-uri": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-rest": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Rest": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Rest package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "rest", + "zend" + ], + "time": "2018-12-27T09:35:07+00:00" + }, + { + "name": "zf1s/zend-server", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-server.git", + "reference": "0440ff9b807a0444a297b7f573c32bd1ea10a923" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-server/zipball/0440ff9b807a0444a297b7f573c32bd1ea10a923", + "reference": "0440ff9b807a0444a297b7f573c32bd1ea10a923", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-server": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Server": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Server package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "server", + "zend" + ], + "time": "2016-10-23T08:16:08+00:00" + }, + { + "name": "zf1s/zend-service", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-service.git", + "reference": "4ab6b2b1d1bbd2fedd2cd2cd77790d712a06a012" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-service/zipball/4ab6b2b1d1bbd2fedd2cd2cd77790d712a06a012", + "reference": "4ab6b2b1d1bbd2fedd2cd2cd77790d712a06a012", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-http": "^1.12" + }, + "replace": { + "zf1/zend-service": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Service": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Service package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "service", + "zend" + ], + "time": "2016-10-23T08:16:08+00:00" + }, + { + "name": "zf1s/zend-session", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-session.git", + "reference": "c0e7357dab724ab18f0c20d159601deeaf624517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-session/zipball/c0e7357dab724ab18f0c20d159601deeaf624517", + "reference": "c0e7357dab724ab18f0c20d159601deeaf624517", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-session": "^1.12" + }, + "suggest": { + "zf1s/zend-config": "Used in special situations or with special adapters", + "zf1s/zend-db": "Used in special situations or with special adapters", + "zf1s/zend-loader": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Session": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Session package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "session", + "zend" + ], + "time": "2016-10-23T08:16:12+00:00" + }, + { + "name": "zf1s/zend-uri", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-uri.git", + "reference": "81c0c536caeb261c7339bccdc8cc8ed6a23626f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-uri/zipball/81c0c536caeb261c7339bccdc8cc8ed6a23626f3", + "reference": "81c0c536caeb261c7339bccdc8cc8ed6a23626f3", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-locale": "^1.12", + "zf1s/zend-validate": "^1.12" + }, + "replace": { + "zf1/zend-uri": "^1.12" + }, + "suggest": { + "zf1s/zend-date": "Used in special situations or with special adapters", + "zf1s/zend-filter": "Used in special situations or with special adapters", + "zf1s/zend-registry": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Uri": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Uri package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "uri", + "zend" + ], + "time": "2016-10-23T08:16:14+00:00" + }, + { + "name": "zf1s/zend-validate", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-validate.git", + "reference": "065da571732398e08a0b0ea6b6f320ae6fca0536" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-validate/zipball/065da571732398e08a0b0ea6b6f320ae6fca0536", + "reference": "065da571732398e08a0b0ea6b6f320ae6fca0536", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-locale": "^1.12" + }, + "replace": { + "zf1/zend-validate": "^1.12" + }, + "suggest": { + "zf1s/zend-date": "Used in special situations or with special adapters", + "zf1s/zend-filter": "Used in special situations or with special adapters", + "zf1s/zend-registry": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Validate": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Validate package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "validate", + "zend" + ], + "time": "2018-08-17T10:18:25+00:00" + }, + { + "name": "zf1s/zend-version", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-version.git", + "reference": "830599829428c1ce55fb2348b2d689e41b2c6765" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-version/zipball/830599829428c1ce55fb2348b2d689e41b2c6765", + "reference": "830599829428c1ce55fb2348b2d689e41b2c6765", + "shasum": "" + }, + "require": { + "php": ">=5.2.11" + }, + "replace": { + "zf1/zend-version": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Version": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Version package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "version", + "zend" + ], + "time": "2016-10-23T08:16:14+00:00" + }, + { + "name": "zf1s/zend-view", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-view.git", + "reference": "e25c2bd4c82f2a0a649a6c0edc41852453cbd04e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-view/zipball/e25c2bd4c82f2a0a649a6c0edc41852453cbd04e", + "reference": "e25c2bd4c82f2a0a649a6c0edc41852453cbd04e", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-controller": "^1.12", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-loader": "^1.12", + "zf1s/zend-locale": "^1.12", + "zf1s/zend-registry": "^1.12" + }, + "replace": { + "zf1/zend-view": "^1.12" + }, + "suggest": { + "zf1s/zend-json": "Used in special situations or with special adapters", + "zf1s/zend-layout": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_View": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 View package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "view", + "zend" + ], + "time": "2016-10-23T08:16:14+00:00" + }, + { + "name": "zf1s/zend-xml", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-xml.git", + "reference": "8759f1ed6016c918596ad00bbce1748efe9794ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-xml/zipball/8759f1ed6016c918596ad00bbce1748efe9794ec", + "reference": "8759f1ed6016c918596ad00bbce1748efe9794ec", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12" + }, + "replace": { + "zf1/zend-xml": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Xml": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Xml package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "xml", + "zend" + ], + "time": "2016-10-23T08:16:15+00:00" } ], "packages-dev": [ @@ -883,7 +2372,7 @@ "constructor", "instantiate" ], - "time": "2015-06-14 21:17:01" + "time": "2015-06-14T21:17:01+00:00" }, { "name": "phpdocumentor/reflection-docblock", @@ -932,7 +2421,7 @@ "email": "mike.vanriel@naenius.com" } ], - "time": "2015-02-03 12:10:50" + "time": "2015-02-03T12:10:50+00:00" }, { "name": "phpspec/prophecy", @@ -995,7 +2484,7 @@ "spy", "stub" ], - "time": "2016-11-21 14:58:47" + "time": "2016-11-21T14:58:47+00:00" }, { "name": "phpunit/dbunit", @@ -1051,7 +2540,7 @@ "xunit" ], "abandoned": true, - "time": "2016-12-02 14:39:14" + "time": "2016-12-02T14:39:14+00:00" }, { "name": "phpunit/php-code-coverage", @@ -1113,7 +2602,7 @@ "testing", "xunit" ], - "time": "2015-10-06 15:47:00" + "time": "2015-10-06T15:47:00+00:00" }, { "name": "phpunit/php-file-iterator", @@ -1160,7 +2649,7 @@ "filesystem", "iterator" ], - "time": "2016-10-03 07:40:28" + "time": "2016-10-03T07:40:28+00:00" }, { "name": "phpunit/php-text-template", @@ -1201,7 +2690,7 @@ "keywords": [ "template" ], - "time": "2015-06-21 13:50:34" + "time": "2015-06-21T13:50:34+00:00" }, { "name": "phpunit/php-timer", @@ -1250,7 +2739,7 @@ "keywords": [ "timer" ], - "time": "2017-02-26 11:10:40" + "time": "2017-02-26T11:10:40+00:00" }, { "name": "phpunit/php-token-stream", @@ -1299,20 +2788,20 @@ "keywords": [ "tokenizer" ], - "time": "2017-02-23 06:14:45" + "time": "2017-02-23T06:14:45+00:00" }, { "name": "phpunit/phpunit", - "version": "4.8.35", + "version": "4.8.36", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87" + "reference": "46023de9a91eec7dfb06cc56cb4e260017298517" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/791b1a67c25af50e230f841ee7a9c6eba507dc87", - "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517", + "reference": "46023de9a91eec7dfb06cc56cb4e260017298517", "shasum": "" }, "require": { @@ -1371,7 +2860,7 @@ "testing", "xunit" ], - "time": "2017-02-06 05:18:07" + "time": "2017-06-21T08:07:12+00:00" }, { "name": "phpunit/phpunit-mock-objects", @@ -1427,7 +2916,7 @@ "mock", "xunit" ], - "time": "2015-10-02 06:51:40" + "time": "2015-10-02T06:51:40+00:00" }, { "name": "sebastian/comparator", @@ -1491,7 +2980,7 @@ "compare", "equality" ], - "time": "2017-01-29 09:50:25" + "time": "2017-01-29T09:50:25+00:00" }, { "name": "sebastian/diff", @@ -1543,7 +3032,7 @@ "keywords": [ "diff" ], - "time": "2015-12-08 07:14:41" + "time": "2015-12-08T07:14:41+00:00" }, { "name": "sebastian/environment", @@ -1593,7 +3082,7 @@ "environment", "hhvm" ], - "time": "2016-08-18 05:49:44" + "time": "2016-08-18T05:49:44+00:00" }, { "name": "sebastian/exporter", @@ -1660,7 +3149,7 @@ "export", "exporter" ], - "time": "2016-06-17 09:04:28" + "time": "2016-06-17T09:04:28+00:00" }, { "name": "sebastian/global-state", @@ -1711,7 +3200,7 @@ "keywords": [ "global state" ], - "time": "2015-10-12 03:26:01" + "time": "2015-10-12T03:26:01+00:00" }, { "name": "sebastian/recursion-context", @@ -1764,7 +3253,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2015-11-11 19:50:13" + "time": "2015-11-11T19:50:13+00:00" }, { "name": "sebastian/version", @@ -1799,7 +3288,7 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "time": "2015-06-21 13:59:46" + "time": "2015-06-21T13:59:46+00:00" }, { "name": "symfony/yaml", @@ -1848,14 +3337,119 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2017-01-21 16:40:50" + "time": "2017-01-21T16:40:50+00:00" + }, + { + "name": "zf1s/zend-dom", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-dom.git", + "reference": "02ff3762cbc9b5bf5ceee288975314c1663ef02e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-dom/zipball/02ff3762cbc9b5bf5ceee288975314c1663ef02e", + "reference": "02ff3762cbc9b5bf5ceee288975314c1663ef02e", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-xml": "^1.12" + }, + "replace": { + "zf1/zend-dom": "^1.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Dom": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Dom package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "dom", + "framework", + "zend" + ], + "time": "2016-10-23T08:16:00+00:00" + }, + { + "name": "zf1s/zend-test", + "version": "1.12.20", + "source": { + "type": "git", + "url": "https://github.com/zf1s/zend-test.git", + "reference": "8309e2364c74895211e9883deb5fb4c808a54aa6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zf1s/zend-test/zipball/8309e2364c74895211e9883deb5fb4c808a54aa6", + "reference": "8309e2364c74895211e9883deb5fb4c808a54aa6", + "shasum": "" + }, + "require": { + "php": ">=5.2.11", + "zf1s/zend-controller": "^1.12", + "zf1s/zend-dom": "^1.12", + "zf1s/zend-exception": "^1.12", + "zf1s/zend-layout": "^1.12", + "zf1s/zend-registry": "^1.12", + "zf1s/zend-session": "^1.12" + }, + "replace": { + "zf1/zend-test": "^1.12" + }, + "suggest": { + "zf1s/zend-loader": "Used in special situations or with special adapters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_Test": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Zend Framework 1 Test package", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework", + "test", + "zend" + ], + "time": "2016-10-23T08:16:13+00:00" } ], "aliases": [], "minimum-stability": "stable", "stability-flags": { "massivescale/celery-php": 20, - "simplepie/simplepie": 20 + "simplepie/simplepie": 20, + "zf1s/zend-rest": 20, + "zf1s/zend-loader": 20, + "zf1s/zend-validate": 20, + "zf1s/zend-cache": 20 }, "prefer-stable": false, "prefer-lowest": false,