adding source code links to footer
[fsfdrupalauth.git] / composer.json
CommitLineData
395539d7
AE
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"],
bc39f89e 6 "license": "LGPL-2.1-or-later",
395539d7
AE
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"
da220714
AE
21 },
22 "allow-plugins": {
23 "composer/package-versions-deprecated": true,
24 "simplesamlphp/composer-module-installer": true
395539d7
AE
25 }
26 },
27 "autoload": {
28 "psr-4": {
29 "SimpleSAML\\Module\\sqlauth\\": "lib/"
30 }
31 },
32 "autoload-dev": {
33 "psr-4": {
34 "SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
35 }
36 },
37 "require": {
da220714
AE
38 "php": "^7.4",
39 "simplesamlphp/assert": "^1.0.0",
40 "simplesamlphp/composer-module-installer": "^1.3.2",
41 "simplesamlphp/simplesamlphp": "*"
395539d7
AE
42 },
43 "require-dev": {
da220714 44 "simplesamlphp/simplesamlphp-test-framework": "^1.5.4"
395539d7
AE
45 }
46}