Skip to content
This repository was archived by the owner on Aug 12, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2.1

orbs:
php: circleci/php@1

workflows:
build:
jobs:
- php/test:
name: php-<< matrix.version >>
matrix:
parameters:
version: ["7.4"]
2 changes: 0 additions & 2 deletions .github_changelog_generator

This file was deleted.

4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
/release/

### Codeception ###
/codeception.yml
/tests/*.suite.yml
/tests/_output/*
/tests/_support/_generated/
/wordpress/*

### Composer ###
/vendor/
/composer.lock

### npm ###
/node_modules/
Expand Down
39 changes: 0 additions & 39 deletions .styleci.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .travis.yml

This file was deleted.

29 changes: 0 additions & 29 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Typist Tech
Copyright (c) 2018-2020 Typist Tech

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ Securely store WordPress user passwords in database with Argon2i hashing and SHA
- [Want to help in other way? Want to be a sponsor?](#want-to-help-in-other-way-want-to-be-a-sponsor)
- [Developing](#developing)
- [Feedback](#feedback)
- [Change Log](#change-log)
- [Security](#security)
- [Credits](#credits)
- [License](#license)
Expand Down Expand Up @@ -356,10 +355,6 @@ $ composer test
Please submit an [issue](https://github.com/TypistTech/wp-password-argon-two/issues/new) and point out what you do and don't like, or fork the project and make suggestions.
**No issue is too small.**

## Change Log

Please see [CHANGELOG](./CHANGELOG.md) for more information on what has changed recently.

## Security

If you discover any security related issues, please email [[email protected]](mailto:[email protected]) instead of using the issue tracker.
Expand Down
24 changes: 0 additions & 24 deletions codeception.dist.yml

This file was deleted.

22 changes: 22 additions & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
namespace: TypistTech\WPPasswordArgonTwo
paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
actor_suffix: Tester
extensions:
enabled:
- Codeception\Extension\RunFailed
commands:
- "Codeception\\Command\\GenerateWPUnit"
- "Codeception\\Command\\GenerateWPRestApi"
- "Codeception\\Command\\GenerateWPRestController"
- "Codeception\\Command\\GenerateWPRestPostTypeController"
- "Codeception\\Command\\GenerateWPAjax"
- "Codeception\\Command\\GenerateWPCanonical"
- "Codeception\\Command\\GenerateWPXMLRPC"
settings:
shuffle: true
colors: true
29 changes: 22 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@
},
"minimum-stability": "stable",
"require": {
"php": "^7.2"
},
"require-dev": {
"lucatume/wp-browser": "^2.0"
"php": "^7.4"
},
"suggest": {
"typisttech/wp-password-argon-two-env": "Allows you configure WP Password Argon Two with environment variables"
Expand All @@ -52,11 +49,29 @@
"src/pluggable.php"
]
},
"autoload-dev": {
"psr-4": {
"TypistTech\\WPPasswordArgonTwo\\": "tests/wpunit"
}
},
"scripts": {
"codecept": "codecept",
"pre-tag": [
"doctoc README.md",
"github_changelog_generator --no-verbose"
"doctoc README.md"
],
"test": "codecept run wpunit"
"test": "codecept run wpunit"
},
"config": {
"platform": {
"php": "7.4.0"
}
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"lucatume/wp-browser": "^2.6",
"codeception/module-db": "^1.0",
"roots/wordpress": "^5.4"
}
}
Loading