├── public
├── favicon.ico
├── robots.txt
├── img
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── logo.png
│ ├── github.png
│ ├── header.jpg
│ ├── 1_small.png
│ ├── 2_small.png
│ ├── 3_small.png
│ ├── 4_small.png
│ ├── 5_small.png
│ ├── 6_small.png
│ ├── favicon.ico
│ ├── logo_full.png
│ └── telegram.png
├── mix-manifest.json
├── editor
│ └── font
│ │ ├── summernote.eot
│ │ ├── summernote.ttf
│ │ ├── summernote.woff
│ │ └── summernote.woff2
├── .htaccess
├── web.config
├── css
│ └── tree.css
├── js
│ ├── js.cookie.min.js
│ ├── repo
│ │ └── repository.js
│ ├── test_plan_page.js
│ └── test_run.js
└── index.php
├── .phpstorm.meta.php
└── .gitkeep
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
├── debugbar
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── database
├── .gitignore
├── factories
│ └── UserFactory.php
├── migrations
│ ├── 2022_05_18_112056_create_projects_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2022_05_21_102744_create_test_runs_table.php
│ ├── 2022_05_18_112057_create_repositories_table.php
│ ├── 2022_05_18_121723_create_suites_table.php
│ ├── 2022_05_28_142756_create_documents_table.php
│ ├── 2022_05_21_102440_create_test_plans_table.php
│ ├── 2022_05_18_121732_create_test_cases_table.php
│ └── 2024_07_02_124723_update_permissions_model_types.php
└── seeds
│ ├── AdminSeeder.php
│ └── TestSeeder.php
├── resources
├── sass
│ └── app.scss
├── js
│ ├── app.js
│ └── bootstrap.js
├── views
│ ├── test_plan
│ │ ├── tree.blade.php
│ │ ├── tree_item.blade.php
│ │ └── list_page.blade.php
│ ├── test_run
│ │ ├── tree.blade.php
│ │ ├── chart.blade.php
│ │ ├── show_page.blade.php
│ │ ├── create_page.blade.php
│ │ ├── list_page.blade.php
│ │ ├── edit_page.blade.php
│ │ ├── tree_item.blade.php
│ │ └── test_cases_list.blade.php
│ ├── docs
│ │ ├── tree_item.blade.php
│ │ ├── selector_tree_item.blade.php
│ │ ├── edit_page.blade.php
│ │ ├── list_page.blade.php
│ │ └── create_page.blade.php
│ ├── test_suite
│ │ ├── create_form.blade.php
│ │ ├── selector_tree_item.blade.php
│ │ ├── editor.blade.php
│ │ └── edit_form.blade.php
│ ├── layout
│ │ ├── sidebar_nav.blade.php
│ │ ├── base_layout.blade.php
│ │ └── header_nav.blade.php
│ ├── project
│ │ ├── create_page.blade.php
│ │ ├── edit_page.blade.php
│ │ └── list_page.blade.php
│ ├── users
│ │ └── list_page.blade.php
│ ├── repository
│ │ ├── list_page.blade.php
│ │ ├── create_page.blade.php
│ │ ├── test_cases_list.blade.php
│ │ └── edit_page.blade.php
│ ├── auth
│ │ └── login_page.blade.php
│ └── test_case
│ │ └── show_overlay.blade.php
└── lang
│ ├── es.json
│ └── en
│ ├── pagination.php
│ ├── auth.php
│ └── passwords.php
├── docker
├── app
│ ├── php.ini
│ └── Dockerfile
└── nginx
│ ├── Dockerfile
│ └── conf.d
│ └── default.conf
├── .gitattributes
├── app
├── Enums
│ ├── CasePriority.php
│ ├── UserRole.php
│ └── TestRunCaseStatus.php
├── Models
│ ├── TestPlan.php
│ ├── Category.php
│ ├── Expenses.php
│ ├── Document.php
│ ├── TestCase.php
│ ├── Suite.php
│ ├── Repository.php
│ ├── User.php
│ ├── Project.php
│ └── TestRun.php
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── Authenticate.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── SummaryController.php
│ │ ├── AuthController.php
│ │ ├── ProjectController.php
│ │ ├── TestSuiteController.php
│ │ └── DocumentsController.php
│ └── Kernel.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Console
│ └── Kernel.php
└── Exceptions
│ └── Handler.php
├── .idea
├── codeStyles
│ ├── codeStyleConfig.xml
│ └── Project.xml
├── vcs.xml
└── phpunit.xml
├── docker-run.sh
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── CreatesApplication.php
└── Feature
│ └── IndexRedirectTest.php
├── .styleci.yml
├── .editorconfig
├── DOCKER_README.md
├── .env_docker
├── .gitignore
├── webpack.mix.js
├── routes
├── channels.php
├── api.php
└── console.php
├── server.php
├── notes.txt
├── .env.testing
├── config
├── cors.php
├── services.php
├── view.php
├── hashing.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── logging.php
├── cache.php
└── mail.php
├── .env_sqlite.backup
├── .env.backup
├── LICENSE
├── package.json
├── phpunit.xml
├── artisan
├── composer.json
└── docker-compose.yml
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.phpstorm.meta.php/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/resources/sass/app.scss:
--------------------------------------------------------------------------------
1 | @import '~bulma/bulma';
2 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/debugbar/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/resources/js/app.js:
--------------------------------------------------------------------------------
1 | require('./bootstrap');
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/public/img/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/1.png
--------------------------------------------------------------------------------
/public/img/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/2.png
--------------------------------------------------------------------------------
/public/img/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/3.png
--------------------------------------------------------------------------------
/public/img/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/4.png
--------------------------------------------------------------------------------
/public/img/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/5.png
--------------------------------------------------------------------------------
/public/img/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/6.png
--------------------------------------------------------------------------------
/public/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/logo.png
--------------------------------------------------------------------------------
/public/img/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/github.png
--------------------------------------------------------------------------------
/public/img/header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/header.jpg
--------------------------------------------------------------------------------
/public/img/1_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/1_small.png
--------------------------------------------------------------------------------
/public/img/2_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/2_small.png
--------------------------------------------------------------------------------
/public/img/3_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/3_small.png
--------------------------------------------------------------------------------
/public/img/4_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/4_small.png
--------------------------------------------------------------------------------
/public/img/5_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/5_small.png
--------------------------------------------------------------------------------
/public/img/6_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/6_small.png
--------------------------------------------------------------------------------
/public/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/favicon.ico
--------------------------------------------------------------------------------
/public/img/logo_full.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/logo_full.png
--------------------------------------------------------------------------------
/public/img/telegram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/img/telegram.png
--------------------------------------------------------------------------------
/docker/app/php.ini:
--------------------------------------------------------------------------------
1 | cgi.fix_pathinfo=0
2 | max_execution_time = 1000
3 | max_input_time = 1000
4 | memory_limit=4G
--------------------------------------------------------------------------------
/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js",
3 | "/css/app.css": "/css/app.css"
4 | }
5 |
--------------------------------------------------------------------------------
/public/editor/font/summernote.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/editor/font/summernote.eot
--------------------------------------------------------------------------------
/public/editor/font/summernote.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/editor/font/summernote.ttf
--------------------------------------------------------------------------------
/public/editor/font/summernote.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/editor/font/summernote.woff
--------------------------------------------------------------------------------
/public/editor/font/summernote.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/a13xh7/QaraTMS/HEAD/public/editor/font/summernote.woff2
--------------------------------------------------------------------------------
/resources/views/test_plan/tree.blade.php:
--------------------------------------------------------------------------------
1 | @foreach($testSuitesTree as $testSuite)
2 | @include('test_plan.tree_item')
3 | @endforeach
4 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/docker/nginx/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM nginx:1.25.1
2 |
3 | # RUN rm /etc/nginx/conf.d
4 | COPY ./docker/nginx/conf.d /etc/nginx/conf.d
5 |
6 | EXPOSE 80
--------------------------------------------------------------------------------
/resources/views/test_run/tree.blade.php:
--------------------------------------------------------------------------------
1 | @foreach($testSuitesTree as $testSuite)
2 |
3 | @include('test_run.tree_item')
4 |
5 | @endforeach
6 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/app/Enums/CasePriority.php:
--------------------------------------------------------------------------------
1 |
2 |
20 | No additional details available.
97 | @endif 98 | 99 |{{$project->description}}
27 |