summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2020-09-30 14:23:38 -0100
committerMaxence Lange <maxence@artificial-owl.com>2020-09-30 14:23:38 -0100
commitce5728b1cc05fd17f4e9912ced24fe059184926d (patch)
tree100abc092704be9739e66020e86a0bdedeca96d1 /composer.json
parent52c7ed24d84ee50c741d26bffd7357d8153b0e5e (diff)
fixing composer
Signed-off-by: Maxence Lange <maxence@artificial-owl.com> fix composer Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 00000000..e197b04d
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,41 @@
+{
+ "name": "nextcloud/social",
+ "description": "Social app",
+ "minimum-stability": "stable",
+ "license": "AGPL-3.0-or-later",
+ "authors": [
+ {
+ "name": "Maxence Lange",
+ "email": "maxence@artificial-owl.com"
+ }
+ ],
+ "config": {
+ "platform": {
+ "php": "7.0.0"
+ },
+ "vendor-dir": "composer/",
+ "optimize-autoloader": true,
+ "classmap-authoritative": true,
+ "autoloader-suffix": "Social"
+ },
+ "autoload": {
+ "psr-4": {
+ "OCA\\Social\\": "lib/"
+ }
+ },
+ "require": {
+ "daita/my-small-php-tools": "dev-master",
+ "gumlet/php-image-resize": "1.9.*",
+ "friendica/json-ld": "^1.0"
+ },
+ "require-dev": {
+ "jakub-onderka/php-parallel-lint": "^1.0",
+ "phpunit/phpunit": "^6.4"
+ },
+ "repositories": [
+ {
+ "type": "vcs",
+ "url": "https://git.friendi.ca/friendica/php-json-ld"
+ }
+ ]
+}