6e031d623a
Updated composer and translations composer install --no-dev composer dump-autoload --optimize git add vendor/ --force make updatepo
51 lines
983 B
JSON
51 lines
983 B
JSON
{
|
|
"name" : "apereo/phpcas",
|
|
"description" : "Provides a simple API for authenticating users against a CAS server",
|
|
"keywords" : [
|
|
"cas",
|
|
"jasig",
|
|
"apereo"
|
|
],
|
|
"homepage" : "https://wiki.jasig.org/display/CASC/phpCAS",
|
|
"type" : "library",
|
|
"license" : "Apache-2.0",
|
|
"authors" : [{
|
|
"name" : "Joachim Fritschi",
|
|
"homepage" : "https://github.com/jfritschi",
|
|
"email" : "jfritschi@freenet.de"
|
|
}, {
|
|
"name" : "Adam Franco",
|
|
"homepage" : "https://github.com/adamfranco"
|
|
}, {
|
|
"name" : "Henry Pan",
|
|
"homepage" : "https://github.com/phy25"
|
|
}
|
|
],
|
|
"require" : {
|
|
"php" : ">=7.0.0",
|
|
"ext-curl" : "*",
|
|
"psr/log" : "^1.0.0"
|
|
},
|
|
"require-dev" : {
|
|
"monolog/monolog" : "^1.0.0",
|
|
"phpunit/phpunit" : ">=4.8.35 <8"
|
|
},
|
|
"autoload" : {
|
|
"classmap" : [
|
|
"source/"
|
|
]
|
|
},
|
|
"autoload-dev" : {
|
|
"psr-4" : {
|
|
"PhpCas\\" : "test/CAS/"
|
|
}
|
|
},
|
|
"scripts" : {
|
|
"test" : "phpunit"
|
|
},
|
|
"extra" : {
|
|
"branch-alias" : {
|
|
"dev-master" : "1.3.x-dev"
|
|
}
|
|
}
|
|
} |