diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-08-07 16:09:59 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-08-07 16:09:59 +0200 |
| commit | 6e3c1eb72a77ee6addc16f47815f91ba332342ba (patch) | |
| tree | a5facecd1391ef0a3b7ac6152b80e0765fbfe107 /phpBB/phpbb | |
| parent | 93124cbe58da58782efde6897fcba1bcffde0bcf (diff) | |
| parent | 6bb71e2ca9f71348516287a301c830adb0a1addf (diff) | |
| download | forums-6e3c1eb72a77ee6addc16f47815f91ba332342ba.tar forums-6e3c1eb72a77ee6addc16f47815f91ba332342ba.tar.gz forums-6e3c1eb72a77ee6addc16f47815f91ba332342ba.tar.bz2 forums-6e3c1eb72a77ee6addc16f47815f91ba332342ba.tar.xz forums-6e3c1eb72a77ee6addc16f47815f91ba332342ba.zip | |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[ticket/12920] Add missing comma
[ticket/12920] Update composer.lock file after update nothing
[ticket/12920] Fix sh syntax error in post-update-cmd script
[ticket/12920] Remove incorrect @ from self.version reference in composer.json
[ticket/12920] Output warning message about vendor cleaning target
[ticket/12920] Turn phpBB composer.json into publishable full version
[ticket/12920] Add require for minimum php version
[ticket/12920] Add composer.json for phpbb/phpbb-core library
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/composer.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/phpBB/phpbb/composer.json b/phpBB/phpbb/composer.json new file mode 100644 index 0000000000..513d7e4559 --- /dev/null +++ b/phpBB/phpbb/composer.json @@ -0,0 +1,27 @@ +{ + "name": "phpbb/phpbb-core", + "description": "Collection of core phpBB libraries", + "type": "library", + "keywords": ["phpbb", "forum"], + "homepage": "https://www.phpbb.com", + "license": "GPL-2.0", + "authors": [ + { + "name": "phpBB Limited", + "email": "operations@phpbb.com", + "homepage": "https://www.phpbb.com/go/authors" + } + ], + "support": { + "issues": "https://tracker.phpbb.com", + "forum": "https://www.phpbb.com/community/", + "wiki": "https://wiki.phpbb.com", + "irc": "irc://irc.freenode.org/phpbb" + }, + "autoload": { + "classmap": [""] + }, + "require": { + "php": ">=5.3.3" + } +} |
