├── .gitattributes ├── .gitignore ├── .htaccess ├── CONSTANTS.php ├── CONTRIBUTING.md ├── INSTALL.php ├── LICENSE ├── README.md ├── api.php ├── config.php ├── func.inc.php ├── mysql_connector.php └── sqlite_connector.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/.htaccess -------------------------------------------------------------------------------- /CONSTANTS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/CONSTANTS.php -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/INSTALL.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/README.md -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/api.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/config.php -------------------------------------------------------------------------------- /func.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/func.inc.php -------------------------------------------------------------------------------- /mysql_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/mysql_connector.php -------------------------------------------------------------------------------- /sqlite_connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroundApps/ShoppingList_Backend/HEAD/sqlite_connector.php --------------------------------------------------------------------------------