diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-04-10 11:06:27 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-04-10 11:13:02 +0200 |
commit | ac26fb42f487af99140db71565f8407a597a7c81 (patch) | |
tree | 9837cb5e87aff6ee4e6b279f12e608eac0330cd9 | |
parent | e79c9b622e7e5754b1d1477e5252eb60084a57de (diff) | |
download | gigologadmin-ac26fb42f487af99140db71565f8407a597a7c81.tar.gz gigologadmin-ac26fb42f487af99140db71565f8407a597a7c81.tar.bz2 gigologadmin-ac26fb42f487af99140db71565f8407a597a7c81.zip |
Add composer.json to manage dependencies.
See https://getcomposer.org/ for intro, why and usage. For now this is
mostly to handle dev dependencies, i.e phpunit.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | composer.json | 17 |
2 files changed, 19 insertions, 0 deletions
@@ -1 +1,3 @@ node_modules + +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f1b2b47 --- /dev/null +++ b/composer.json @@ -0,0 +1,17 @@ +{ + "name": "eternal-terror/giglogadmin", + "description": "Assign reviewers and photographers to concerts for WordPress", + "type": "wordpress-plugin", + "license": "AGPLv3", + "authors": [ + { + "name": "Harald Eilertsen", + "email": "haraldei@anduin.net" + }, + { + "name": "Andrea Chirulescu", + "email": "andrea.chirulescu@gmail.com" + } + ], + "require": {} +} |