Commits on Source (2)
-
Darlington authored
-
Darlington authored
Showing
- .editorconfig 15 additions, 0 deletions.editorconfig
- .gitattributes 15 additions, 0 deletions.gitattributes
- .gitignore 11 additions, 473 deletions.gitignore
- CHANGELOG.md 4 additions, 0 deletionsCHANGELOG.md
- LICENSE.md 21 additions, 0 deletionsLICENSE.md
- README.md 30 additions, 70 deletionsREADME.md
- composer.json 52 additions, 0 deletionscomposer.json
- composer.lock 4853 additions, 0 deletionscomposer.lock
- phpunit.xml.dist 23 additions, 0 deletionsphpunit.xml.dist
- src/composer.json 0 additions, 71 deletionssrc/composer.json
- src/tests/.gitkeep 0 additions, 0 deletionssrc/tests/.gitkeep
- tests/ArchTest.php 5 additions, 0 deletionstests/ArchTest.php
- tests/ExampleTest.php 5 additions, 0 deletionstests/ExampleTest.php
- tests/Pest.php 1 addition, 0 deletionstests/Pest.php
.editorconfig
0 → 100644
.gitattributes
0 → 100644
CHANGELOG.md
0 → 100644
LICENSE.md
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "lido-nation/adapayments", | |||
"description": "package for receiving cardano native token payments in php, laravel, and woocommerce", | |||
"keywords": [ | |||
"cardano", | |||
"lidonation", | |||
"laravel", | |||
"wordpress" | |||
], | |||
"homepage": "https://gitlab.lidonation.com/lidonation/adapayments.io", | |||
"license": "MIT", | |||
"authors": [ | |||
{ | |||
"name": "Lido Nation", | |||
"email": "hello@lidonation.com", | |||
"role": "Developer" | |||
} | |||
], | |||
"require": { | |||
"php": "^8.1", | |||
"saloonphp/saloon": "^3.0" | |||
}, | |||
"require-dev": { | |||
"pestphp/pest": "^2.15", | |||
"laravel/pint": "^1.0", | |||
"spatie/ray": "^1.28" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"LidoNation\\Adapayments\\": "src" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"LidoNation\\Adapayments\\Tests\\": "tests" | |||
} | |||
}, | |||
"scripts": { | |||
"test": "vendor/bin/pest", | |||
"test-coverage": "vendor/bin/pest --coverage", | |||
"format": "vendor/bin/pint" | |||
}, | |||
"config": { | |||
"sort-packages": true, | |||
"allow-plugins": { | |||
"pestphp/pest-plugin": true, | |||
"phpstan/extension-installer": true | |||
} | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true | |||
} |
composer.lock
0 → 100644
This diff is collapsed.
phpunit.xml.dist
0 → 100644
src/composer.json
deleted
100644 → 0
src/tests/.gitkeep
deleted
100644 → 0
tests/ArchTest.php
0 → 100644
tests/ExampleTest.php
0 → 100644
tests/Pest.php
0 → 100644