This repository was archived by the owner on Oct 20, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.25 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "phpslides/framework",
"description": "The PhpSlides Framework",
"homepage": "https://github.com/PhpSlides",
"type": "library",
"license": "MIT",
"keywords": ["framework", "phpslides"],
"support": {
"issues": "https://github.com/PhpSlides/framework/issues",
"source": "https://github.com/PhpSlides/framework"
},
"authors": [
{
"name": "Dave Conco",
"email": "info@dconco.dev",
"role": "Developer",
"homepage": "https://dconco.dev"
}
],
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.6",
"firebase/php-jwt": "^6.10",
"sergeytsalkov/meekrodb": "^3.1"
},
"suggest": {
"phpslides/status": "^0.0.3"
},
"require-dev": {
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"PhpSlides\\": "src/Exception/",
"PhpSlides\\Core\\": "src/",
"PhpSlides\\Router\\": "Router/"
},
"files": ["src/Bootstrap/App.php"]
},
"autoload-dev": {
"psr-4": {
"PhpSlides\\Tests\\": "tests/__tests__/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit || vendor/bin/phpunit || php vendor/bin/phpunit",
"post-install-cmd": ["PhpSlides\\Core\\Cache\\Cache::clear()"]
},
"minimum-stability": "stable",
"prefer-stable": true
}