1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00

initial composer file ahead of sobak's composer work

This commit is contained in:
Peter Cowburn
2016-12-12 16:44:33 +00:00
parent 84c3d6bc4a
commit e5007a143d
3 changed files with 57 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
output
tags
vendor
*.swp
*.tgz
*.tar

34
composer.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "php/phd",
"type": "project",
"description": "PHP DocBook Rendering System",
"homepage": "http://doc.php.net/phd.php",
"license": "MIT",
"authors": [
{
"name": "Hannes Magnusson",
"email": "bjori@php.net",
"homepage": "http://people.php.net/bjori",
"role": "Lead Developer"
},
{
"name": "The PHP Documentation Team",
"email": "phpdoc@lists.php.net",
"homepage": "https://github.com/php/phd/graphs/contributors"
}
],
"require": {
"php": ">=5.3.0",
"ext-dom": "*",
"ext-sqlite3": "*",
"ext-xmlreader": "*"
},
"suggest": {
"easybook/geshi": "For using GeSHi as code highlighter"
},
"autoload": {
"psr-0": {
"phpdotnet\\": "."
}
}
}

22
composer.lock generated Normal file
View File

@@ -0,0 +1,22 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"content-hash": "0a86baeef26e4be1985b6083fa956efe",
"packages": [],
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": ">=5.3.0",
"ext-dom": "*",
"ext-sqlite3": "*",
"ext-xmlreader": "*"
},
"platform-dev": []
}