Skip to content

Commit 79e7503

Browse files
committed
Craft CMS 3 release WIP
1 parent dfb9264 commit 79e7503

File tree

26 files changed

+877
-821
lines changed

26 files changed

+877
-821
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Fetch Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## 1.0.0 - 2018-08-09
8+
### Added
9+
- Initial Craft CMS 3 release

LICENCE

-103
This file was deleted.

LICENSE.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018 Supercool Ltd
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

composer.json

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "supercool/fetch",
3+
"description": "A field type to embed video for Craft CMS",
4+
"type": "craft-plugin",
5+
"version": "1.0.0",
6+
"keywords": [
7+
"craft",
8+
"cms",
9+
"craftcms",
10+
"craftcms3",
11+
"craft-plugin",
12+
"fetch",
13+
"supercool"
14+
],
15+
"support": {
16+
"docs": "https://github.com/supercool/fetch/blob/master/README.md",
17+
"issues": "https://github.com/supercool/fetch/issues"
18+
},
19+
"license": "MIT",
20+
"authors": [
21+
{
22+
"name": "Supercool Ltd",
23+
"homepage": "http://www.supercooldesign.co.uk/"
24+
}
25+
],
26+
"require": {
27+
"craftcms/cms": "^3.0.0"
28+
},
29+
"autoload": {
30+
"psr-4": {
31+
"supercool\\fetch\\": "src/"
32+
}
33+
},
34+
"extra": {
35+
"name": "Fetch",
36+
"handle": "fetch",
37+
"schemaVersion": "1.0.0",
38+
"hasCpSettings": true,
39+
"hasCpSection": false,
40+
"changelogUrl": "https://raw.githubusercontent.com/supercool/fetch/master/CHANGELOG.md",
41+
"class": "supercool\\fetch\\Fetch"
42+
}
43+
}

fetch/FetchPlugin.php

-55
This file was deleted.

fetch/controllers/FetchController.php

-31
This file was deleted.

0 commit comments

Comments
 (0)