Skip to content

Commit f1da5cc

Browse files
committed
Release 1.12.20
1 parent dbf5d4b commit f1da5cc

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Zend Framework 1 for Composer
22
=============================
33

4-
This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package. Some modifications were made for improved [Composer](http://getcomposer.org/) integration. This package can also be found at [Packagist](http://packagist.org/packages/zf1).
4+
This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package. Some modifications were made for improved [Composer](http://getcomposer.org/) integration. This package can also be found at [Packagist](http://packagist.org/packages/zf1s).
55

66
## Why?
77

@@ -10,13 +10,11 @@ This package is a part of the Zend Framework 1. Each component was separated and
1010
**Autoloading!** Explicit `require_once` calls in the source code has been commented out to rely on composer autoloading, this reduces the number of included files to a minimum.
1111

1212
**Migration!** Zend Framework 2 has been around for a while now, and migrating all your projects takes a lot of time. Using these packages makes it easier to migrate each component separately. Also, some packages doesn't exist in zf2 (such as the zend-search-lucene), now you can continue using that package without requiring the entire framework.
13-
14-
If you're using major parts of the framework, I would recommend checking out the [zendframework1 package](https://github.com/bombayworks/zendframework1), which contains the entire framework optimized for composer usage.
15-
13+
1614
## How to use
1715

18-
Add `"zf1/zend-json": "~1.12"` to the require section of your composer.json, include the composer autoloader and you're good to go.
16+
Add `"zf1s/zend-json": "~1.12"` to the require section of your composer.json, include the composer autoloader and you're good to go.
1917

2018
## Broken dependencies?
2119

22-
Dependencies have been set automatically based on the [requirements from the zend framework manual](http://framework.zend.com/manual/1.12/en/requirements.introduction.html), if you find any broken dependencies please submit an issue.
20+
Dependencies have been set automatically based on the [requirements from the zend framework manual](http://framework.zend.com/manual/1.12/en/requirements.introduction.html), if you find any broken dependencies please submit a pull request.

composer.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zf1/zend-json",
2+
"name": "zf1s/zend-json",
33
"description": "Zend Framework 1 Json package",
44
"keywords": [
55
"framework",
@@ -11,14 +11,22 @@
1111
"license": "BSD-3-Clause",
1212
"require": {
1313
"php": ">=5.2.11",
14-
"zf1/zend-exception": "self.version",
15-
"zf1/zend-loader": "self.version",
16-
"zf1/zend-server": "self.version",
17-
"zf1/zend-xml": "self.version"
14+
"zf1s/zend-exception": "^1.12",
15+
"zf1s/zend-loader": "^1.12",
16+
"zf1s/zend-server": "^1.12",
17+
"zf1s/zend-xml": "^1.12"
1818
},
1919
"autoload": {
2020
"psr-0": {
2121
"Zend_Json": "library/"
2222
}
23+
},
24+
"replace": {
25+
"zf1/zend-json": "^1.12"
26+
},
27+
"extra": {
28+
"branch-alias": {
29+
"dev-master": "1.x-dev"
30+
}
2331
}
2432
}

0 commit comments

Comments
 (0)