-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 KB
/
composer.json
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
{
"name": "on2media/shore",
"description": "Shore framework",
"type": "library",
"require": {
"php": ">=8.0.0",
"smarty/smarty": "^4.3.1"
},
"autoload": {
"files": [
"lib/utilities.php"
],
"classmap": [
"lib/Collection.php",
"lib/Component.php",
"lib/Control.php",
"lib/Controller.php",
"lib/FileView.php",
"lib/JsonView.php",
"lib/MapCollection.php",
"lib/MapObject.php",
"lib/MySqlCollection.php",
"lib/MySqlDatabase.php",
"lib/MySqlObject.php",
"lib/MySqlObjectRelationship.php",
"lib/MySqlViewObject.php",
"lib/ObjectField.php",
"lib/Router.php",
"lib/Session.php",
"lib/SessionObject.php",
"lib/ShoreObject.php",
"lib/SmartyView.php",
"lib/TextView.php",
"lib/View.php",
"lib/XmlView.php",
"lib/controls/",
"lib/components/"
]
}
}