Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
1{
2 "name": "socialdept/atp-parity",
3 "description": ":package_description",
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", "AtpReplicator"],
14 "require": {
15 "illuminate/support": "~9"
16 },
17 "require-dev": {
18 "../../../vendor/phpunit/phpunit": "~9.0",
19 "orchestra/testbench": "~7"
20 },
21 "autoload": {
22 "psr-4": {
23 "SocialDept\\AtpReplicator\\": "src/"
24 }
25 },
26 "autoload-dev": {
27 "psr-4": {
28 "SocialDept\\AtpReplicator\\Tests\\": "tests"
29 }
30 },
31 "extra": {
32 "laravel": {
33 "providers": [
34 "SocialDept\\AtpReplicator\\AtpReplicatorServiceProvider"
35 ],
36 "aliases": {
37 "AtpReplicator": "SocialDept\\AtpReplicator\\Facades\\AtpReplicator"
38 }
39 }
40 }
41}