tradedataservices / phpspec-for-ci-extension
PhpSpec for CodeIgniter
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tradedataservices/phpspec-for-ci-extension
Requires
- phpspec/phpspec: 2.4.*@stable
Requires (Dev)
- behat/behat: 3.1.*@rc
- bossa/phpspec2-expect: 1.0.*@stable
- henrikbjorn/phpspec-code-coverage: 1.0.*@dev
- phpmd/phpmd: 2.3.*@stable
- squizlabs/php_codesniffer: 2.3.*@stable
This package is auto-updated.
Last update: 2025-10-17 06:52:12 UTC
README
#Phpspec for CodeIgniter Extension
##Using the extension
- Add the following repository entry in your
composer.jsonfile:
...
"repositories": [
...
{
"type": "git",
"url": "git@bitbucket.org:code-ninja/phpspec-for-ci-extension.git"
}
...
]
- Add the following repository entry in your
composer.jsonfile:
...
"require-dev": {
...
"importgenius/phpspec-for-ci-extension" : "dev-master"
...
}
- Enable the extension in your
phpspec.ymlfile:
...
extensions:
- ImportGenius\PhpSpecForCi\PhpSpecExtension
...
##For further technical details, see the feature files in this folder:
vendor/importgenius/phpspec-for-ci-extension/features/code_generation
##Running The Tests
###Behat
$ bin/behat
###Phpspec
$ bin/phpspec run
###PHPMD
$ bin/phpmd src/ text cleancode,codesize,controversial,design,naming,unusedcode
###PHPCS
$ bin/phpcs src/ --standard=PSR2