-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "nwoun/api",
"description": "API for the corresponding nwo-uncensored.com project",
"type": "project",
"authors": [
{
"name": "j0Shi82",
"email": "[email protected]"
}
],
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"require": {
"slim/slim": "^4.13",
"slim/psr7": "^1.6",
"jbbcode/jbbcode": "^1.4",
"vlucas/phpdotenv": "^5.6",
"php-di/slim-bridge": "^3.4",
"simplepie/simplepie": "^1.8",
"phpmailer/phpmailer": "^6.9",
"vlucas/valitron": "^1.4",
"propel/propel": "^2.0@beta",
"patreon/patreon": "^1.0",
"symfony/cache": "^7.1",
"firebase/php-jwt": "^6.10",
"palepurple/rate-limit": "^2.0",
"middlewares/client-ip": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"classmap": [
"src/Schema/generated-classes/"
]
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8084 -t public -c dev/php.ini"
],
"propel": [
"cd src/Schema && php ../../vendor/bin/propel sql:build --overwrite",
"rm -rf src/Schema/generated-classes",
"cd src/Schema && php ../../vendor/bin/propel model:build",
"cd src/Schema && php ../../vendor/bin/propel config:convert"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}