All Projects → Dealerdirect → php-qa-tools

Dealerdirect / php-qa-tools

Licence: MIT license
A metapackage for all PHP quality assurance tools we use at Dealerdirect

Programming Languages

shell
77523 projects
Standard ML
205 projects

Projects that are alternatives of or similar to php-qa-tools

aquality-selenium-java
Aquality Selenium is a library built over Selenium WebDriver tool that allows to automate work with web browsers. Selenium WebDriver requires some skill and experience. So, Aquality Selenium suggests simplified and most importantly safer and more stable way to work with Selenium WebDriver.
Stars: ✭ 41 (+13.89%)
Mutual labels:  qa, qatools
Links-QA
Сборная солянка полезных ссылок для QA/тестировщика. Ссылки будут постоянно пополняться.
Stars: ✭ 42 (+16.67%)
Mutual labels:  qa, qatools
unity-asset-validator
The Asset Validator is an editor tool for validating assets in the project and in scenes.
Stars: ✭ 30 (-16.67%)
Mutual labels:  qa, qatools
relint
General purpose RegEx based file linter.
Stars: ✭ 33 (-8.33%)
Mutual labels:  qa, qatools
cyclonedx-node-module
creates CycloneDX Software Bill of Materials (SBOM) from node-based projects
Stars: ✭ 104 (+188.89%)
Mutual labels:  metapackage, meta-package
autotests
Armbian automated testings
Stars: ✭ 18 (-50%)
Mutual labels:  qa, qatools
percona-qa
Percona QA is a suite of scripts and utilities that assists in building, continuous integration, automated testing & bug reporting for Percona Server, Percona XtraDB Cluster, Percona XtraBackup, Percona Server for MongoDB, as well as other flavors of MySQL (Oracle, Facebook MyQSL, WebScaleSQL, MariaDB) etc.
Stars: ✭ 55 (+52.78%)
Mutual labels:  qa, quality-assurance
mailhandler
Simple lightweight mail library which allows you to send and retrieve emails, and get more details about email sending and delivery
Stars: ✭ 49 (+36.11%)
Mutual labels:  qa, qatools
babel-plugin-transform-react-qa-classes
Add component's name in `data-qa` attributes to React Components
Stars: ✭ 41 (+13.89%)
Mutual labels:  qa, qatools
awesome-cypress
🎉 A curated list of awesome things related to Cypress
Stars: ✭ 274 (+661.11%)
Mutual labels:  qa, quality-assurance
composer-plugin-qa
Comprehensive Plugin for composer to execute PHP Quality assurance Tools
Stars: ✭ 25 (-30.56%)
Mutual labels:  quality-assurance, php-qa
test junkie
Highly configurable testing framework for Python
Stars: ✭ 72 (+100%)
Mutual labels:  qa, qatools
FoQA
Container for Quality Assurance utilities to be included in QA/testing variants of Android apps.
Stars: ✭ 15 (-58.33%)
Mutual labels:  qa
chatbot
kbqa task-oriented qa seq2seq ir neo4j jena seq2seq tf chatbot chat
Stars: ✭ 32 (-11.11%)
Mutual labels:  qa
pysys-test
PySys System Test Framework
Stars: ✭ 14 (-61.11%)
Mutual labels:  qa
patchgirl
Manual reproducible web API tests for web developers
Stars: ✭ 95 (+163.89%)
Mutual labels:  qa
extensiveautomation-server
Extensive Automation server
Stars: ✭ 19 (-47.22%)
Mutual labels:  quality-assurance
lemoncheesecake
Python framework for end-to-end / QA testing
Stars: ✭ 37 (+2.78%)
Mutual labels:  qa
Chatbot
基于语义理解、知识图谱的聊天机器人
Stars: ✭ 30 (-16.67%)
Mutual labels:  qa
bento
🍱 bento is an English-based automation language designed to be used by non-technical people.
Stars: ✭ 32 (-11.11%)
Mutual labels:  qa

Dealerdirect: PHP Quality Assurance Tools

Project Stage Maintenance Awesome License

Travis Latest Version on Packagist Packagist

“If you don’t have time to do it right you must have time to do it over.”

This is essentially a Composer meta package, creating a fast, easy and convenient way of installing all PHP Quality Assurance tools.

Contents

You'll get the following tools by depending on this package:

Linters / Fixers

Quality Assistance

Test Related

  • Codeception: Modern full-stack testing framework for PHP
  • ParaTest: Parallel testing for PHPUnit
  • PHPUnit: Testing framework for PHP

Other

Other packages that you'll get:

Suggested

The following packages are suggested:

  • Behat: Scenario-oriented BDD framework
  • ApiGen: Smart and Readable Documentation for your PHP project
  • Mockery: A simple yet flexible PHP mock object framework
  • PHP_CodeBrowser: A code browser that augments the code with information from various QA tools
  • phpcov: Command-line frontend for the PHP_CodeCoverage library
  • phpDocumentor: Documentation generator for PHP
  • phpDox: Documentation generator for PHP
  • Sami: An API documentation generator

Usage

This is a simple metapackage which can be used in two different ways; globally installed or on a per project basis.

Both methods have their strengths (+) and weaknesses (-).

Global installation:

  • + All tools are present anywhere on your system
  • + Can be used on any codebase, even the ones that don't use Composer.
  • - You'll have to update manually, since it's not a project, versioning is not managed.

Per project installation:

  • + Versioning (update/installation) is provided in the project
  • - Tools not available system wide. You'll need to run them from a specific path.

These methods are not mutual exclusive. You can have your global installed version, which can be used anywhere, but still use the one provided in a project.

Installation

Global installation

The following script will install a system wide Composer for you, including the QA tools.

bash <(curl -S https://raw.githubusercontent.com/Dealerdirect/php-qa-tools/master/bin/install.sh)

That's it. This can be put in any instructions, such as a README or someone's blog, since the logic is in the shell script. Provided you download the script using https, the file has standard levels of authentication and encryption protecting it from manipulation. We also sign the install with a GPG key, this way you can check if the downloaded releases signature matches the public key of Dealerdirect.

gpg --keyserver hkp://keys.gnupg.net --recv-keys C4133165DF5EB4BAEABDADCACF1E7823C5339B59
curl -O https://raw.githubusercontent.com/Dealerdirect/php-qa-tools/master/bin/install.sh
curl -O https://raw.githubusercontent.com/Dealerdirect/php-qa-tools/master/bin/install.sh.sig
gpg --verify install.sh.sig
bash install.sh

This is obviously a shell script, if you're really concerned about the argument that it may contain nefarious activities within, you can easily review it before you run it.

curl -O https://raw.githubusercontent.com/Dealerdirect/php-qa-tools/master/bin/install.sh
less install.sh
bash instal.sh

If you already have a global Composer setup, you could include the tools manually, without the need for running the shell script above.

composer global require "dealerdirect/qa-tools:*"

Per project installation

The other option is to install this on a per project basis.

Using Composer (preferred method):

composer require --dev "dealerdirect/qa-tools"

Or modify your composer.json to include dealerdirect/qa-tools in the require-dev sections:

{
  "name": "acme/my-project",
  "require": {
    "…": "*"
  },
  "require-dev": {
    "dealerdirect/qa-tools": "*"
  }
}

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We've set up a separate document for our contribution guidelines.

Thank you for being involved! 😍

Authors & contributors

The original idea and setup of this repository is by Franck Nijhof, employee @ Dealerdirect.

For a full list off all author and/or contributors, check the contributors page.

Working @ Dealerdirect

Dealerdirect is always on the looking for energetic and hard working developers and devops engineers.

Interested in working at Dealerdirect? Then please be sure to check out our vacancies.

Did not find a matching vacancy? Just get in touch!

dealerdirect.com

License

The MIT License (MIT)

Copyright (c) 2016-2018 Dealerdirect B.V.

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:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].