openstamanager/composer.json

88 lines
2.5 KiB
JSON
Raw Normal View History

{
2018-09-20 16:12:34 +02:00
"name": "devcode-it/openstamanager",
2018-02-20 14:56:13 +01:00
"description": "Gestionale open-source per assistenza tecnica e fatturazione",
"license": "GPL-3.0",
"keywords": [
"gestionale",
"assistenza tecnica",
"fatturazione"
],
2018-02-24 11:23:20 +01:00
"homepage": "https://www.openstamanager.com/",
"authors": [{
"name": "Fabio Lovato",
"email": "info@openstamanager.com"
}, {
"name": "Fabio Piovan",
"email": "info@openstamanager.com"
}, {
"name": "Luca Salvà",
"email": "info@openstamanager.com"
}],
"type": "project",
"require": {
"php": ">=5.6",
2019-04-12 01:11:32 +02:00
"ext-curl": "*",
"ext-dom": "*",
2019-01-03 11:04:28 +01:00
"ext-intl": "*",
2019-04-12 01:11:32 +02:00
"ext-json": "*",
2019-01-03 11:04:28 +01:00
"ext-libxml": "*",
2019-04-12 01:11:32 +02:00
"ext-mbstring": "*",
2019-01-03 11:04:28 +01:00
"ext-openssl": "*",
2019-04-12 01:11:32 +02:00
"ext-pdo": "*",
"ext-simplexml": "*",
2019-01-03 11:04:28 +01:00
"ext-xsl": "*",
2019-04-12 01:11:32 +02:00
"ext-zip": "*",
"aluguest/ical-easy-reader": "^1.5",
"danielstjules/stringy": "^3.1",
2018-11-16 19:14:21 +01:00
"davidepastore/codice-fiscale": "^0.4.0",
"ezyang/htmlpurifier": "^4.8",
"filp/whoops": "^2.1",
2018-07-09 18:26:22 +02:00
"guzzlehttp/guzzle": "^6.3",
"ifsnop/mysqldump-php": "^2.3",
"illuminate/database": "~5.4.0",
"intervention/image": "^2.3",
2018-02-23 19:04:05 +01:00
"league/csv": "^8.2",
"maximebf/debugbar": "^1.15",
"monolog/monolog": "^1.22",
"mpdf/mpdf": "^7.1",
"mpociot/vat-calculator": "^2.3",
2018-07-08 18:25:36 +02:00
"owasp/csrf-protector-php": "^1.0",
"phpmailer/phpmailer": "^6.0",
"respect/validation": "^1.1",
2018-07-05 17:56:38 +02:00
"servo/fluidxml": "^1.21",
"slim/flash": "^0.4.0",
"spipu/html2pdf": "^5.0",
"symfony/filesystem": "^3.3",
"symfony/finder": "^3.3",
"symfony/polyfill-ctype": "^1.8",
"symfony/polyfill-php70": "^1.8",
"symfony/translation": "^3.3",
"symfony/var-dumper": "^3.3"
},
2018-02-11 15:19:09 +01:00
"require-dev": {
2019-07-11 17:20:58 +02:00
"codeception/codeception": "^3.0",
"friendsofphp/php-cs-fixer": "^2.10"
2018-02-11 15:19:09 +01:00
},
"autoload": {
"psr-4": {
2018-09-25 16:47:44 +02:00
"": "src/"
},
"files": [
"lib/functions.php",
2018-07-17 12:05:21 +02:00
"lib/common.php",
"lib/helpers.php",
"lib/util.php",
"lib/deprecated.php"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true,
"prefer-stable": true,
"platform": {
"php": "5.6.4"
}
}
}