You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add config to control built php versions (#103)
* feat: add config to control built php versions
* chore: use bref 1.0.0 instead of 1.0.0-beta1
* chore: prepare changelog for 0.6.4
* deps: support add php80 xdebug variant
Note that the "Memcached" layer provides both extension for [Memcache](https://pecl.php.net/package/memcache) and [Memcached](https://pecl.php.net/package/memcached).
83
83
@@ -153,8 +153,9 @@ be in their "standard" location.
153
153
154
154
1. Create a new folder in `layers` and name it to your extension name.
155
155
2. Add your Dockerfile
156
-
3. Update .travis.yml to include your extension
157
-
4. Update the table in the readme
156
+
3. Create a config.json file at root of your layer directory specifying php versions it is built for.
157
+
4. Update .travis.yml to include your extension
158
+
5. Update the table in the readme
158
159
159
160
Please refer [here](docs/create_your_own_extension_layer.md) for more details.
Copy file name to clipboardExpand all lines: layers/cassandra/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
ARG PHP_VERSION
2
-
FROM bref/build-php-$PHP_VERSION:1.0.0-beta1 AS ext
2
+
FROM bref/build-php-$PHP_VERSION:1.0.0 AS ext
3
3
4
4
# Datastax is providing a PHP Cassandra driver, but this hasn't been updated for a while and doesn't work with PHP 7.2 or higher
5
5
# Datastax indicated there will be updates in the near future, so check https://docs.datastax.com/en/developer/php-driver/ if you want to avoid building your own :-)
0 commit comments