summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..f6caf31
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,17 @@
+{
+ "name": "dnoegel/php-xdg-base-dir",
+ "description": "implementation of xdg base directory specification for php",
+ "type": "project",
+ "license": "MIT",
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "@stable"
+ },
+ "autoload": {
+ "psr-4": {
+ "XdgBaseDir\\": "src/"
+ }
+ }
+}