Revision: 4901
Author:
Uwe....@googlemail.com
Date: Sat Oct 18 05:55:40 2014 UTC
Log: - add COMPOSER_RELEASE_NOTES
https://code.google.com/p/smarty-php/source/detail?r=4901
Added:
/trunk/distribution/COMPOSER_RELEASE_NOTES.txt
Modified:
/trunk/composer.json
/trunk/distribution/change_log.txt
/trunk/distribution/composer.json
=======================================
--- /dev/null
+++ /trunk/distribution/COMPOSER_RELEASE_NOTES.txt Sat Oct 18 05:55:40 2014
UTC
@@ -0,0 +1,29 @@
+
+
+Starting with Smarty 3.1.21 Composer has been configured to load the
packages from github.
+
+*******************************************************************************
+*
*
+* NOTE: Because of this change you must clear your local composer cache
with *
+* the "composer clearcache"
command *
+*
*
+*******************************************************************************
+
+To get the latest stable version use
+ "require": {
+ "smarty/smarty": "~3.1"
+ }
+in your composer.json file.
+
+To get the trunk version use
+ "require": {
+ "smarty/smarty": "~3.1@dev"
+ }
+
+The "smarty/smarty" package will start at libs/.... subfolder.
+
+To retrieve the development and documentation folders add
+ "require-dev": {
+ "smarty/smarty-dev": "~3.1@dev"
+ }
+
=======================================
--- /trunk/composer.json Thu Oct 16 01:33:28 2014 UTC
+++ /trunk/composer.json Sat Oct 18 05:55:40 2014 UTC
@@ -1,5 +1,5 @@
{
- "name": "smarty/smarty",
+ "name": "smarty/smarty-dev",
"type": "library",
"description": "Smarty - the compiling PHP template engine",
"keywords": ["templating"],
@@ -22,8 +22,7 @@
"support": {
"irc": "irc://
irc.freenode.org/smarty",
"issues": "
http://code.google.com/p/smarty-php/issues/list",
- "forum": "
http://www.smarty.net/forums/",
- "source": "
http://code.google.com/p/smarty-php/source/browse/"
+ "forum": "
http://www.smarty.net/forums/"
},
"require": {
"php": ">=5.2"
@@ -35,24 +34,11 @@
"distribution/libs/sysplugins/smarty_security.php"
]
},
- "repositories": [
- {
- "type": "package",
- "package": {
- "name": "smarty/smarty",
- "version": "3.1.20",
- "dist": {
- "url": "
http://www.smarty.net/files/Smarty-3.1.20.zip",
- "type": "zip"
- },
- "autoload": {
- "classmap": [
- "libs/Smarty.class.php",
- "libs/SmartyBC.class.php",
- "libs/sysplugins/smarty_security.php"
- ]
- }
- }
+
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev"
}
- ]
+ }
+
}
=======================================
--- /trunk/distribution/change_log.txt Thu Oct 16 22:53:22 2014 UTC
+++ /trunk/distribution/change_log.txt Sat Oct 18 05:55:40 2014 UTC
@@ -1,10 +1,14 @@
===== 3.1.21-dev ===== (xx.xx.2014)
+ 18.10.2014
+ - composer moved to github
+ - add COMPOSER_RELEASE_NOTES
+
17.10.2014
- bugfix on $php_handling security and optimization of
smarty_internal_parsetree (Thue Kristensen)
-
+
16.10.2014
- bugfix composer.json update
-
+
15.10.2014
- bugfix calling a new created cache file with fetch() and
Smarty::CACHING_LIFETIME_SAVED multiple times did fail (forum 22350)
=======================================
--- /trunk/distribution/composer.json Thu Oct 9 21:29:46 2014 UTC
+++ /trunk/distribution/composer.json Sat Oct 18 05:55:40 2014 UTC
@@ -22,30 +22,22 @@
"support": {
"irc": "irc://
irc.freenode.org/smarty",
"issues": "
http://code.google.com/p/smarty-php/issues/list",
- "forum": "
http://www.smarty.net/forums/",
- "source": "
http://code.google.com/p/smarty-php/source/browse/"
+ "forum": "
http://www.smarty.net/forums/"
},
"require": {
"php": ">=5.2"
},
"autoload": {
"classmap": [
- "libs/Smarty.class.php",
+ "libs/Smarty.class.php",
"libs/SmartyBC.class.php",
"libs/sysplugins/smarty_security.php"
]
},
- "repositories": [
- {
- "type": "package",
- "package": {
- "name": "smarty/smarty",
- "version": "3.1.20",
- "dist": {
- "url": "
http://www.smarty.net/files/Smarty-3.1.20.zip",
- "type": "zip"
- }
- }
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev"
}
- ]
+ }
+
}