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
| Slim Application Error | |
| The application could not run because of the following error: | |
| Details | |
| Type: ErrorException | |
| Code: 2 | |
| Message: call_user_func_array() expects parameter 1 to be a valid callback, class 'PickleWeb\Controller\PackageController' does not have a method 'packageAction' | |
| File: /home/pierre/projects/pickle/pickleweb/vendor/akrabat/rka-slim-controller/RKA/Slim.php | |
| Line: 79 |
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
| object(League\OAuth2\Client\Entity\User)#3 (12) { | |
| ["uid":protected]=> | |
| int(282408) | |
| ["nickname":protected]=> | |
| string(10) "pierrejoye" | |
| ["name":protected]=> | |
| string(0) "" | |
| ["firstName":protected]=> | |
| NULL |
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
| <?php | |
| $radius = 249; | |
| $im = imagecreatetruecolor(500, 500); | |
| imagefill($im, 0,0, imagecolorallocatealpha($im, 0,0,0,127)); | |
| imagealphablending($im, false ); | |
| imagesavealpha($im, true); | |
| $color_obj = 0xff0000; | |
| $object_count = 20; | |
| $object_radius = 10; |
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
| diff --git a/src/Composer/Command/InstallCommand.php b/src/Composer/Command/InstallCommand.php | |
| index e548b8d..9803878 100644 | |
| --- a/src/Composer/Command/InstallCommand.php | |
| +++ b/src/Composer/Command/InstallCommand.php | |
| @@ -47,6 +47,7 @@ class InstallCommand extends Command | |
| new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Shows more details including new commits pulled in when updating packages.'), | |
| new InputOption('optimize-autoloader', 'o', InputOption::VALUE_NONE, 'Optimize autoloader during autoloader dump'), | |
| new InputOption('ignore-platform-reqs', null, InputOption::VALUE_NONE, 'Ignore platform requirements (php & ext- packages).'), | |
| + new InputOption('install-extensions', null, InputOption::VALUE_NONE, 'install PHP extensions'), | |
| new InputArgument('packages', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Should not be provided, use composer require instead to add a given package to composer.json.'), |
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
| Using: | |
| project composer: | |
| { | |
| "name": "pierre/testprj", | |
| "description": "Test prj for pickle", | |
| "license": "BSD", | |
| "authors": [ | |
| { | |
| "name": "Pierre Joye", | |
| "email": "[email protected]" |
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
| array(40) { | |
| [0]=> | |
| array(2) { | |
| ["id"]=> | |
| string(3) "616" | |
| ["version"]=> | |
| string(3) "1.0" | |
| } | |
| [1]=> | |
| array(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
| Krungthepmahanakhon Amonrattanakosin | |
| Mahinthara Yutthaya Mahadilok Phop | |
| Noppharat Ratchathani Burirom Udom | |
| Ratchaniwet Mahasathan Amonphiman | |
| Awatansathit Sakkathattiya | |
| Witsanukamprasit |
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
| diff --git a/Zend/zend.c b/Zend/zend.c | |
| index 942b0a0..8b909ee 100644 | |
| --- a/Zend/zend.c | |
| +++ b/Zend/zend.c | |
| @@ -1245,6 +1245,61 @@ ZEND_API void zend_output_debug_string(zend_bool trigger_break, const char *form | |
| } | |
| /* }}} */ | |
| + | |
| +ZEND_API int zend_execute_string(int type, zval *retval, char *string, size_t len, const char *filename) /* {{{ */ |
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
| extra | |
| vcsurl: ".." | |
| id: "..." | |
| platforms:[ | |
| "php" | |
| [ | |
| [ | |
| min | |
| max | |
| vcsurl |
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
| diff --git a/Zend/zend_language_scanner.c b/Zend/zend_language_scanner.c | |
| index 53d8eb2..be37e0c 100644 | |
| --- a/Zend/zend_language_scanner.c | |
| +++ b/Zend/zend_language_scanner.c | |
| @@ -1,4 +1,4 @@ | |
| -/* Generated by re2c 0.13.5 on Sun Dec 22 13:03:33 2013 */ | |
| +/* Generated by re2c 0.13.5 */ | |
| #line 1 "Zend/zend_language_scanner.l" | |
| /* | |
| +----------------------------------------------------------------------+ |