Skip to content
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

Added a composer.json to enable support for PIE #88

Draft
wants to merge 2 commits into
base: php7
Choose a base branch
from
Draft
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
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "php/yaml",
Copy link
Author

Choose a reason for hiding this comment

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

I'm just double-checking that the php vendor is not reserved on Packagist

Copy link
Author

Choose a reason for hiding this comment

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

There is ongoing discussion about the top level namespace php being used on Packagist...

Copy link
Member

Choose a reason for hiding this comment

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

Maybe could use pecl as vendor instead?

"type": "php-ext",
"license": "MIT",
"description": "YAML-1.1 parser and emitter",
"require": {
"php": ">= 7.1.0",
"ext-date": "*"
},
"php-ext": {
"extension-name": "yaml",
"configure-options": [
{
"name": "with-yaml",
"description": "Enable LibYAML support. DIR is the path to LibYAML install prefix",
"needs-value": true
}
]
}
}
Loading