Skip to content

Commit 8554300

Browse files
authored
Merge pull request #245 from bitrix24/dev
ship 1.6.0 release
2 parents 7a8be99 + a7748ac commit 8554300

File tree

202 files changed

+15504
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+15504
-128
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.vscode
12
/.idea*
23
/app
34
vendor

.php-cs-fixer.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
->in(__DIR__ . '/src/Services/CRM/Timeline/')
1818
->in(__DIR__ . '/src/Services/Entity/Section/')
1919
->in(__DIR__ . '/src/Services/Department/')
20+
->in(__DIR__ . '/src/Services/Sale/')
21+
->in(__DIR__ . '/src/Services/Task/')
22+
->in(__DIR__ . '/src/Services/Sale/')
2023
->name('*.php')
2124
->exclude(['vendor', 'storage', 'docker', 'docs']) // Exclude directories
2225
->ignoreDotFiles(true)

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Run integration tests for Sale scope",
6+
"type": "shell",
7+
"command": "make test-integration-scope-sale",
8+
"args": [],
9+
"isBackground": false,
10+
"problemMatcher": [
11+
"$gcc"
12+
],
13+
"group": "build"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)