Initial version of fsfdrupalauth, still alpha software
[fsfdrupalauth.git] / composer.json
1 {
2 "name": "fsf/fsfdrupalauth",
3 "description": "This is a authentication module for authenticating a user against the FSF's Drupal database",
4 "type": "simplesamlphp-module",
5 "keywords": ["simplesamlphp", "sqlauth"],
6 "license": "GPL-3.0-or-later",
7 "authors": [
8 {
9 "name": "Olav Morken",
10 "email": "olavmrk@gmail.com"
11 },
12 {
13 "name": "Andrew Engelbrecht",
14 "email": "andrew@fsf.org"
15 }
16 ],
17 "config": {
18 "preferred-install": {
19 "simplesamlphp/simplesamlphp": "source",
20 "*": "dist"
21 }
22 },
23 "autoload": {
24 "psr-4": {
25 "SimpleSAML\\Module\\sqlauth\\": "lib/"
26 }
27 },
28 "autoload-dev": {
29 "psr-4": {
30 "SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
31 }
32 },
33 "require": {
34 "php": ">=5.6",
35 "simplesamlphp/composer-module-installer": "~1.1"
36 },
37 "require-dev": {
38 "phpunit/phpunit": "~5.7",
39 "simplesamlphp/simplesamlphp": "^1.17",
40 "webmozart/assert": "^1.4"
41 }
42 }