Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions foreign/php/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

/.gitattributes export-ignore
/.gitignore export-ignore
/Dockerfile.test export-ignore
/composer.lock export-ignore
/docker-compose.test.yml export-ignore
/phpunit.xml.dist export-ignore
/target export-ignore
/target/** export-ignore
/tests export-ignore
/tests/** export-ignore
/vendor export-ignore
/vendor/** export-ignore
34 changes: 33 additions & 1 deletion foreign/php/composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,46 @@
{
"name": "apache/iggy-php",
"description": "PHP extension bindings for Apache Iggy.",
"type": "php-ext",
Comment thread
countradooku marked this conversation as resolved.
"license": "Apache-2.0",
"type": "library",
"homepage": "https://iggy.apache.org",
"keywords": [
"apache",
"iggy",
"messaging",
"streaming",
"message-streaming",
"event-streaming",
"php-extension",
"rust-extension"
],
"authors": [
{
"name": "Apache Iggy (Incubating) Contributors",
"homepage": "https://iggy.apache.org"
}
],
"support": {
"docs": "https://iggy.apache.org/docs/",
"issues": "https://github.com/apache/iggy/issues",
"source": "https://github.com/apache/iggy/tree/master/foreign/php"
Comment on lines +24 to +26
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think about adding a discord link as well?

},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"php-ext": {
"extension-name": "iggy_php",
"support-zts": false,
"support-nts": true,
"configure-options": [],
"download-url-method": [
Comment thread
countradooku marked this conversation as resolved.
"pre-packaged-binary",
"composer-default"
]
},
"scripts": {
"test": "phpunit"
}
Expand Down
Loading