-
-
Notifications
You must be signed in to change notification settings - Fork 46
chore: fix up local stack #137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -501,12 +501,6 @@ $ganeshaClient->request('GET', 'http://api.example.com/awesome_resource'); | |
| You can also specify `$service` via a option passed to client, or request header. If both are specified, the option value takes precedence. | ||
|
|
||
| ```php | ||
| // via constructor argument | ||
| $ganeshaClient = new GaneshaHttpClient($client, $ganesha, [ | ||
| // 'ganesha.service_name' is defined as ServiceNameExtractor::OPTION_KEY | ||
| 'ganesha.service_name' => 'specified_service_name', | ||
| ]); | ||
|
Comment on lines
-505
to
-508
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would there be any appetite to support the |
||
|
|
||
| // via request method argument | ||
| $ganeshaClient->request( | ||
| 'GET', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ COPY install_composer.sh /tmp/ | |
| RUN apt-get update \ | ||
| && apt-get install --no-install-recommends -y git \ | ||
| && apt-get install --no-install-recommends -y libmemcached-dev \ | ||
| && apt-get install --no-install-recommends -y libssl-dev \ | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. needed for libmemcached |
||
| && apt-get install --no-install-recommends -y zlib1g-dev \ | ||
| && apt-get install --no-install-recommends -y unzip \ | ||
| && apt-get install --no-install-recommends -y libzip-dev \ | ||
|
|
@@ -17,7 +18,7 @@ RUN apt-get update \ | |
| && echo 'extension=redis.so' >> /usr/local/etc/php/php.ini \ | ||
| && yes '' | pecl install xdebug-3.1.5 \ | ||
| && echo 'zend_extension=xdebug.so' >> /usr/local/etc/php/php.ini \ | ||
| && yes '' | pecl install mongodb \ | ||
| && yes '' | pecl install mongodb-1.21.1 \ | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. installs 2.x by default and composer requirement doesn't like it |
||
| && echo 'extension=mongodb.so' >> /usr/local/etc/php/php.ini \ | ||
| && yes '' | pecl install apcu \ | ||
| && echo 'extension=apcu.so' >> /usr/local/etc/php/php.ini \ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
third argument is not an array, this was a lie 🤥