Skip to content

Commit 94c89a7

Browse files
committed
Initial commit
1 parent 85cf4b5 commit 94c89a7

File tree

21 files changed

+11896
-1
lines changed

21 files changed

+11896
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
vendor
3+
mix-manifest.json
4+
hot

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
# statamic-rubytext
1+
# Statamic Ruby Text
2+
23
Adds a ruby text button to the Bard fieldtype in Statamic.
4+
5+
## How to Install
6+
7+
You can search for this addon in the `Tools > Addons` section of the Statamic control panel and click **install**, or run the following command from your project root:
8+
9+
``` bash
10+
composer require textandbytes/statamic-rubytext
11+
```

composer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "textandbytes/statamic-rubytext",
3+
"autoload": {
4+
"psr-4": {
5+
"Textandbytes\\StatamicRubytext\\": "src"
6+
}
7+
},
8+
"autoload-dev": {
9+
"psr-4": {
10+
"Textandbytes\\StatamicRubytext\\Tests\\": "tests"
11+
}
12+
},
13+
"require": {
14+
"statamic/cms": "^5.0"
15+
},
16+
"require-dev": {
17+
"orchestra/testbench": "^9.0"
18+
},
19+
"config": {
20+
"allow-plugins": {
21+
"pixelfear/composer-dist-plugin": true
22+
}
23+
},
24+
"extra": {
25+
"statamic": {
26+
"name": "Ruby Text",
27+
"description": "Adds a ruby text button to the Bard fieldtype in Statamic/"
28+
},
29+
"laravel": {
30+
"providers": [
31+
"Textandbytes\\StatamicRubytext\\ServiceProvider"
32+
]
33+
}
34+
},
35+
"minimum-stability": "dev",
36+
"prefer-stable": true
37+
}

0 commit comments

Comments
 (0)