{"id":41717101,"url":"https://github.com/collinped/laravel-uber","last_synced_at":"2026-01-24T22:19:41.849Z","repository":{"id":134907883,"uuid":"229984542","full_name":"collinped/laravel-uber","owner":"collinped","description":"Laravel Wrapper for Uber Api","archived":false,"fork":false,"pushed_at":"2020-01-07T04:00:08.000Z","size":222,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-01-29T21:04:08.499Z","etag":null,"topics":["laravel","rideshare","ridesharing","uber","uber-api"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/collinped.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-12-24T18:03:20.000Z","updated_at":"2023-04-12T12:29:10.000Z","dependencies_parsed_at":"2023-05-24T05:30:18.878Z","dependency_job_id":null,"html_url":"https://github.com/collinped/laravel-uber","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"d46289bc541739f9aaaacc215ff034efab06d304"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/collinped/laravel-uber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-uber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-uber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-uber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-uber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/collinped","download_url":"https://codeload.github.com/collinped/laravel-uber/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-uber/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28738445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","rideshare","ridesharing","uber","uber-api"],"created_at":"2026-01-24T22:19:41.761Z","updated_at":"2026-01-24T22:19:41.837Z","avatar_url":"https://github.com/collinped.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Laravel Uber](cover.png?raw=true \"Laravel Uber\")\n\nlaravel-uber\n===============\nUNDER CONSTRUCTION - Laravel Uber API Integration\n\n## Installation\n\nBegin by installing this package through Composer. Run this command from the Terminal:\n\n```bash\ncomposer require collinped/laravel-uber\n```\nIf you're using Laravel 5.5+, this is all there is to do.\n\nShould you still be on older versions of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your `config/app.php` file.\n\n### Integration for older versions of Laravel (5.5 -)\n\nTo wire this up in your Laravel project, you need to add the service provider.\nOpen `app.php`, and add a new item to the providers array.\n\n```php\n'Collinped\\Uber\\UberServiceProvider',\n```\n\n###Configuring the package\n\nYou can publish the config file with:\n\n```php\nphp artisan vendor:publish --provider=\"Collinped\\Uber\\UberServiceProvider\" --tag=\"config\"\n```\n\nThis is the contents of the file that will be published at config/uber.php\n\nInsert the following values into your .env\n\n```php\nUBER_ENV=local //optional - uses your current APP_ENV by default\nUBER_ID=\nUBER_SECRET=\n```\n\nAdd your SFTP settings to the drivers array in config/filesystems.php\n\n```php\n'drivers' =\u003e [\n    ...,\n\n    'sftp' =\u003e [\n        'driver' =\u003e sftp',\n        'host' =\u003e 'sftp.uber.com',\n        'username' =\u003e env('UBER_SFTP_USERNAME'),\n        'password' =\u003e env('UBER_SFTP_PASSWORD'),\n        'privateKey' =\u003e env('UBER_PRIVATE_KEY', '/path/to/privateKey'),\n        'passphrase' =\u003e env('UBER_PRIVATE_KEY_PASSPHRASE'), //optional if set during RSA creation\n        'port' =\u003e 2222,\n        'root' =\u003e '',\n        // 'timeout' =\u003e 30,\n    ],\n]\n```\n\nSee Uber Settings for instructions on how to get these values.\n\n### laravel-uber Roadmap\n\n- [ ] SFTP Upload Users to Uber Business\n- [ ] SFTP Upload Expense Codes to Uber Business\n- [ ] Download transactional data from Uber Business\n\n### Links\n- SFTP Automation - https://developer.uber.com/docs/businesses/data-automation/introduction#introduction\n- Transactional Data - https://developer.uber.com/docs/businesses/data-automation/data-download\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollinped%2Flaravel-uber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcollinped%2Flaravel-uber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollinped%2Flaravel-uber/lists"}