takeshin
takeshin

Reputation: 50648

Current version of Zend Framework 1

Is there any feed/file online I could parse to know which version of the Zend Framework 1 is most up to date? I'd like to be notified immediately about the security updates.

The only solution I came up so far is parsing SVN tags:

Upvotes: 3

Views: 141

Answers (2)

leek
leek

Reputation: 12121

Just call Zend_Version::getLatest() (which hits: http://framework.zend.com/api/zf-version).

Documentation here.

Upvotes: 0

markus
markus

Reputation: 40675

Different feeds for different purposes

Zend Framework Release Feed
--> only feeds the new version Releases

Zend Framework Security Feed
--> feeds important security news

Zend Framework Developer Feed
--> feeds interesting (sometimes) information for devs

Upvotes: 2

Related Questions