1
0
mirror of https://github.com/danog/PrimeModule.git synced 2024-11-26 12:24:39 +01:00
PrimeModule/composer.json

37 lines
830 B
JSON
Raw Permalink Normal View History

2017-02-21 18:35:05 +01:00
{
"name": "danog/primemodule",
"description": "Prime module capable of doing prime factorization of huge numbers very quickly.\"",
"type": "library",
2018-03-19 01:26:02 +01:00
"license": "AGPL-3.0-only",
2017-02-21 18:35:05 +01:00
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
2021-10-24 18:51:03 +02:00
"require": {
2022-05-22 14:15:00 +02:00
"php": "^8.0"
2021-10-24 18:51:03 +02:00
},
"suggest": {
2022-05-22 14:15:00 +02:00
"ext-primemodule": "Install the native C++ extension for extremely fast factorization (https://prime.madelineproto.xyz)"
},
2017-02-21 18:42:51 +01:00
"autoload": {
"psr-0": {
"danog\\": "lib/"
}
2022-05-22 14:15:00 +02:00
},
"config": {
"allow-plugins": {
"phabel/phabel": true
}
},
"require-dev": {
"phabel/phabel": "^1"
},
"extra": {
"phabel": {
"revision": 0
}
2017-02-21 18:42:51 +01:00
}
2017-02-21 18:35:05 +01:00
}