Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
at main 1.4 kB view raw
1{ 2 "name": "socialdept/atp-parity", 3 "description": "AT Protocol record mapping and sync for Laravel Eloquent models", 4 "license": "MIT", 5 "authors": [ 6 { 7 "name": "Author Name", 8 "email": "author@email.com", 9 "homepage": "http://author.com" 10 } 11 ], 12 "homepage": "https://github.com/socialdept/atp-parity", 13 "keywords": ["Laravel", "AT Protocol", "Bluesky", "ATP", "Parity", "Sync"], 14 "require": { 15 "php": "^8.2", 16 "illuminate/support": "^10.0|^11.0|^12.0", 17 "illuminate/database": "^10.0|^11.0|^12.0", 18 "socialdept/atp-schema": "^0.3", 19 "socialdept/atp-client": "^0.0", 20 "socialdept/atp-resolver": "^1.1", 21 "socialdept/atp-signals": "^1.1" 22 }, 23 "require-dev": { 24 "phpunit/phpunit": "^10.0|^11.0", 25 "orchestra/testbench": "^8.0|^9.0|^10.0" 26 }, 27 "autoload": { 28 "psr-4": { 29 "SocialDept\\AtpParity\\": "src/" 30 } 31 }, 32 "autoload-dev": { 33 "psr-4": { 34 "SocialDept\\AtpParity\\Tests\\": "tests" 35 } 36 }, 37 "extra": { 38 "laravel": { 39 "providers": [ 40 "SocialDept\\AtpParity\\ParityServiceProvider" 41 ], 42 "aliases": { 43 "Parity": "SocialDept\\AtpParity\\Facades\\Parity" 44 } 45 } 46 } 47}