Skip to content

Commit

Permalink
some small bug and code fixes, package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
j0Shi82 committed Jun 7, 2024
1 parent f3939da commit 13d459d
Show file tree
Hide file tree
Showing 54 changed files with 1,510 additions and 895 deletions.
92 changes: 49 additions & 43 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,51 @@
{
"name": "nwoun/api",
"description": "API for the corresponding nwo-uncensored.com project",
"type": "project",
"authors": [
{
"name": "j0Shi82",
"email": "j0shi.webdev@gmail.com"
}
],
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"require": {
"slim/slim": "4.*",
"slim/psr7": "^1.5",
"jbbcode/jbbcode": "^1.4",
"vlucas/phpdotenv": "^5.1",
"php-di/slim-bridge": "^3.0",
"simplepie/simplepie": "^1.5",
"phpmailer/phpmailer": "^6.1",
"vlucas/valitron": "^1.4",
"propel/propel": "^2.0@beta",
"patreon/patreon": "^1.0",
"symfony/cache": "^6.0",
"firebase/php-jwt": "^6.3",
"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"
]
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "nwoun/api",
"description": "API for the corresponding nwo-uncensored.com project",
"type": "project",
"authors": [
{
"name": "j0Shi82",
"email": "j0shi.webdev@gmail.com"
}
],
"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
}
Loading

0 comments on commit 13d459d

Please sign in to comment.