-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1001 Bytes
/
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
{
"name": "atlasrw/wails",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "atlasrw",
"email": "atlasrw@icloud.com"
}
],
"require": {
"firebase/php-jwt": "^5.4",
"league/oauth2-client": "^2.6",
"symfony/dotenv": "^5.3"
},
"autoload": {
"psr-4": {
"Wails\\Core\\": [
"src/",
"src/config/",
"src/interfaces/"
],
"Wails\\Database\\": "database/",
"Wails\\Models\\": "models/",
"Wails\\Views\\": "views/",
"Wails\\Controllers\\": "controllers/"
}
},
"scripts": {
"new:controller" : "\\Wails\\Core\\Script::new_controller",
"new:model" : "\\Wails\\Core\\Script::new_model",
"db:create" : "\\Wails\\Core\\Script::db_create",
"db:seed" : "\\Wails\\Core\\Script::db_seed",
"server:apache" : "a2enmod rewrite"
}
}