This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;read this for more info: https://xdebug.org/docs/upgrade_guide | |
zend_extension=xdebug.so | |
;mode is a new setting. debug let us use debugger in an IDE, develop enhances var_dump output | |
xdebug.mode=debug,develop | |
;default port changed to 9003, so we should change this in our IDE also | |
xdebug.client_port=9003 | |
;trigger it via get variable or cookie | |
xdebug.start_with_request=trigger | |
xdebug.remote_log="/tmp/xdebug.log" | |
xdebug.cli_color=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |