mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
51 lines
1.3 KiB
JSON
Executable File
51 lines
1.3 KiB
JSON
Executable File
{
|
|
"name": "codeigniter4/appstarter",
|
|
"description": "CodeIgniter4 starter app",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"homepage": "https://codeigniter.com",
|
|
"support": {
|
|
"forum": "https://forum.codeigniter.com/",
|
|
"source": "https://github.com/codeigniter4/CodeIgniter4",
|
|
"slack": "https://codeigniterchat.slack.com"
|
|
},
|
|
"require": {
|
|
"php": "^8.2",
|
|
"codeigniter4/framework": "^4.0",
|
|
"codeigniter4/shield": "^1.0",
|
|
"dompdf/dompdf": "^3.0",
|
|
"firebase/php-jwt": "^6.10",
|
|
"hermawan/codeigniter4-datatables": "^0.7.2",
|
|
"nicolab/php-ftp-client": "^2.0",
|
|
"phpseclib/phpseclib": "~3.0",
|
|
"picqer/php-barcode-generator": "^3.2"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.9",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"phpunit/phpunit": "^9.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app",
|
|
"Config\\": "app/Config"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\Support\\": "tests/_support"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
}
|
|
}
|