Skip to content

Commit fbe1619

Browse files
committed
Release 1.12.20
1 parent ec46021 commit fbe1619

File tree

6 files changed

+361
-23
lines changed

6 files changed

+361
-23
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-validate": "~1.12"` to the require section of your composer.json, include the composer autoloader and you're good to go.
16+
Add `"zf1s/zend-validate": "~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: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zf1/zend-validate",
2+
"name": "zf1s/zend-validate",
33
"description": "Zend Framework 1 Validate package",
44
"keywords": [
55
"framework",
@@ -11,18 +11,26 @@
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-locale": "self.version"
14+
"zf1s/zend-exception": "^1.12",
15+
"zf1s/zend-loader": "^1.12",
16+
"zf1s/zend-locale": "^1.12"
1717
},
1818
"autoload": {
1919
"psr-0": {
2020
"Zend_Validate": "library/"
2121
}
2222
},
2323
"suggest": {
24-
"zf1/zend-date": "Used in special situations or with special adapters",
25-
"zf1/zend-filter": "Used in special situations or with special adapters",
26-
"zf1/zend-registry": "Used in special situations or with special adapters"
24+
"zf1s/zend-date": "Used in special situations or with special adapters",
25+
"zf1s/zend-filter": "Used in special situations or with special adapters",
26+
"zf1s/zend-registry": "Used in special situations or with special adapters"
27+
},
28+
"replace": {
29+
"zf1/zend-validate": "^1.12"
30+
},
31+
"extra": {
32+
"branch-alias": {
33+
"dev-master": "1.x-dev"
34+
}
2735
}
2836
}

library/Zend/Validate/EmailAddress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class Zend_Validate_EmailAddress extends Zend_Validate_Abstract
6363
);
6464

6565
/**
66-
* As of RFC5753 (JAN 2010), the following blocks are no logner reserved:
66+
* As of RFC5753 (JAN 2010), the following blocks are no longer reserved:
6767
* - 128.0.0.0/16
6868
* - 191.255.0.0/16
6969
* - 223.255.255.0/24

0 commit comments

Comments
 (0)