Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
2
	"name" : "apereo/phpcas",
3
	"description" : "Provides a simple API for authenticating users against a CAS server",
4
	"keywords" : [
5
		"cas",
6
		"jasig",
7
		"apereo"
8
	],
9
	"homepage" : "https://wiki.jasig.org/display/CASC/phpCAS",
10
	"type" : "library",
11
	"license" : "Apache-2.0",
12
	"authors" : [{
13
			"name" : "Joachim Fritschi",
14
			"homepage" : "https://github.com/jfritschi",
15
			"email" : "jfritschi@freenet.de"
16
		}, {
17
			"name" : "Adam Franco",
18
			"homepage" : "https://github.com/adamfranco"
19
		}, {
20
			"name" : "Henry Pan",
21
			"homepage" : "https://github.com/phy25"
22
		}
23
	],
24
	"require" : {
25
		"php" : ">=7.1.0",
26
		"ext-curl" : "*",
27
		"ext-dom"  : "*",
28
		"psr/log" : "^1.0 || ^2.0 || ^3.0"
29
    },
30
	"require-dev" : {
31
		"monolog/monolog" : "^1.0.0 || ^2.0.0",
32
		"phpunit/phpunit" : ">=7.5",
33
		"phpstan/phpstan" : "^1.5"
34
	},
35
	"autoload" : {
36
		"classmap" : [
37
			"source/"
38
		]
39
	},
40
	"autoload-dev" : {
41
		"files": ["source/CAS.php"],
42
		"psr-4" : {
43
			"PhpCas\\" : "test/CAS/"
44
		}
45
	},
46
	"scripts" : {
47
		"test" : "phpunit",
48
		"phpstan" : "phpstan"
49
	},
50
	"extra" : {
51
		"branch-alias" : {
52
			"dev-master" : "1.3.x-dev"
53
		}
54
	}
55
}