nulib/composer.json

47 lines
724 B
JSON
Raw Normal View History

2023-10-03 04:17:01 +04:00
{
2023-10-20 09:59:43 +04:00
"name": "nulib/php",
2023-10-03 04:17:01 +04:00
"type": "library",
"description": "fonctions et classes essentielles",
"repositories": [
{
"type": "composer",
"url": "https://repos.univ-reunion.fr/composer"
}
],
2024-11-27 09:23:20 +04:00
"extra": {
"branch-alias": {
2024-11-28 19:57:48 +04:00
"dev-master": "7.4.x-dev",
"dev-php82": "8.2.x-dev"
2024-11-27 09:23:20 +04:00
}
},
2024-11-28 20:58:43 +04:00
"require": {
2024-11-29 07:23:57 +04:00
"symfony/yaml": "^7.1",
2024-11-29 07:22:08 +04:00
"ext-json": "*",
2024-11-29 07:23:57 +04:00
"php": "^8.2"
2024-11-28 20:58:43 +04:00
},
2023-10-03 04:17:01 +04:00
"require-dev": {
2024-11-29 07:23:57 +04:00
"nulib/tests": "8.2",
"ext-posix": "*",
"ext-pcntl": "*",
"ext-curl": "*"
2023-10-03 04:17:01 +04:00
},
"autoload": {
"psr-4": {
"nulib\\": "php/src"
2023-10-03 04:17:01 +04:00
}
},
"autoload-dev": {
"psr-4": {
2023-10-20 09:59:43 +04:00
"nulib\\": "php/tests"
2023-10-03 04:17:01 +04:00
}
},
"scripts": {
},
"authors": [
{
"name": "Jephte Clain",
"email": "Jephte.Clain@univ-reunion.fr"
}
]
}