-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more configuratino to site package
- Loading branch information
1 parent
0e44e29
commit df43756
Showing
5 changed files
with
61 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
services: | ||
_defaults: | ||
autowire: true | ||
autoconfigure: true | ||
public: true | ||
|
||
Pwademo\SitePackage\: | ||
resource: '../Classes/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,35 @@ | ||
{ | ||
"name": "pwademo/site-package", | ||
"type": "typo3-cms-extension", | ||
"version": "1.0.0", | ||
"minimum-stability": "stable", | ||
"description": "TYPO3 Headless And PWA Demo Site Package", | ||
"require": { | ||
"typo3/cms-core": "^12.4" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Łukasz Uznański", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Marcin Sągol", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "TYPO3 PWA Initiative", | ||
"role": "Developer", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"extra": { | ||
"typo3/cms": { | ||
"extension-key": "site_package" | ||
} | ||
} | ||
"name": "pwademo/site-package", | ||
"type": "typo3-cms-extension", | ||
"version": "1.0.0", | ||
"minimum-stability": "stable", | ||
"description": "TYPO3 Headless And PWA Demo Site Package", | ||
"require": { | ||
"typo3/cms-core": "^12.4" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Łukasz Uznański", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Marcin Sągol", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "TYPO3 PWA Initiative", | ||
"role": "Developer", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Pwademo\\SitePackage\\": "Classes" | ||
} | ||
}, | ||
"extra": { | ||
"typo3/cms": { | ||
"extension-key": "site_package" | ||
} | ||
} | ||
} |