forked from dconco/phpspa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.29 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "dconco/phpspa",
"type": "library",
"description": "A lightweight, component-based PHP library for building Single Page Applications (SPAs) without relying on heavy frontend frameworks.",
"keywords": [
"php",
"spa",
"phpspa",
"js",
"jsx",
"javascript",
"component-library"
],
"license": "MIT",
"autoload": {
"psr-4": {
"phpSPA\\": "app/client/",
"phpSPA\\Core\\": "app/core/",
"phpSPA\\Interfaces\\": "app/interfaces/",
"phpSPA\\Exceptions\\": "app/exceptions/"
},
"files": [
"app/client/Component/createState.php",
"app/client/Component/HTMLAttrInArrayToString.php",
"app/client/Component/import.php",
"app/client/Component/Link.php",
"app/client/Component/Navigate.php",
"app/core/Impl/Const/StateConstant.php",
"app/client/Http/Redirect.php"
]
},
"authors": [
{
"name": "Dave Conco",
"email": "concodave@gmail.com",
"role": "Developer",
"homepage": "https://dconco.dev"
}
],
"require": {
"php": "^8.2"
},
"prefer-stable": true,
"minimum-stability": "stable"
}