Files
lucent-laravel/composer.json
T

44 lines
970 B
JSON
Raw Permalink Normal View History

2023-10-02 23:10:49 +03:00
{
"name": "lexx27/lucent",
2023-10-02 23:47:01 +03:00
"type": "library",
2023-10-02 23:10:49 +03:00
"description": "Lucent cms",
"license": "MIT",
"require": {
2023-11-14 21:18:50 +02:00
"ext-xml": "*",
"ext-zip": "*",
"ext-sqlite3": "*",
"ext-imagick": "*",
2024-08-27 12:24:51 +03:00
"ext-pdo": "*",
2024-08-14 22:04:34 +03:00
"php": "^8.3",
2023-10-02 23:10:49 +03:00
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.7",
"phpoption/phpoption": "^1.9",
"spatie/image-optimizer": "^1.6",
2024-08-27 12:24:51 +03:00
"staudenmeir/laravel-cte": "^1.0"
2023-10-02 23:10:49 +03:00
},
"require-dev": {
2024-08-19 17:48:10 +03:00
"phpstan/phpstan": "^1.8",
"laravel/framework": "^10.10"
2023-10-02 23:10:49 +03:00
},
"autoload": {
"psr-4": {
2023-10-02 23:47:01 +03:00
"Lucent\\": "src/"
2023-10-02 23:10:49 +03:00
},
"files": [
"src/Response.php",
2024-08-19 17:48:10 +03:00
"src/macros.php"
2023-10-02 23:10:49 +03:00
]
},
2023-10-02 23:47:01 +03:00
"extra": {
"laravel": {
"providers": [
"Lucent\\LucentServiceProvider"
]
}
},
2023-10-02 23:10:49 +03:00
"minimum-stability": "stable",
"prefer-stable": true
2023-10-02 23:47:01 +03:00
2023-10-02 23:10:49 +03:00
}