Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ProklUng committed Jul 15, 2021
0 parents commit a6cc51f
Show file tree
Hide file tree
Showing 19 changed files with 9,367 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/.idea/
/.vscode/
/*/
!/tests/
!/src/
/vendor/
*.cache
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Boilerplate для работы с контейнерами Symfony в модулях Битрикс

***INTERNAL***

### Установка

composer.json:

```json
"repositories": [
{
"type": "git",
"url": "https://github.com/proklung/proklung/bitrix.containerable.boilerplate"
}
]
```

```bash
composer require proklung/bitrix-containerable-boilerplate
```
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "proklung/bitrix-containerable-boilerplate",
"description": "PHP boilerplate для работы с контейнерами Symfony в Битриксе",
"type": "bitrix",
"license": "MIT",
"support": {
"issues": "https://github.com/ProklUng/bitrix.containerable.boilerplate/issues",
"source": "https://github.com/ProklUng/bitrix.containerable.boilerplate"
},
"authors": [
{
"name": "Gavrilov Fedy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"ProklUng\\ContainerBoilerplate\\": "src" }
},
"autoload-dev": {
"psr-4": {"ProklUng\\ContainerBoilerplate\\Tests\\": "tests" }
},
"require": {
"php": ">=7.1 | ^8.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/config": "^4.0 || ^5.0",
"symfony/console": "^4.0 || ^5.0",
"symfony/filesystem": "^4.0 || ^5.0"
},
"require-dev": {
"proklung/bitrix-phpunit-testing-tools": "^1.0"
},
"extra": {
"installer-paths": {
"vendor/sheerockoff/bitrix-ci/files/bitrix/modules/{$name}/": ["type:bitrix-module"]
}
}
}
Loading

0 comments on commit a6cc51f

Please sign in to comment.