Skip to content

Commit

Permalink
restore original composer json
Browse files Browse the repository at this point in the history
  • Loading branch information
xavdid-stripe committed Jan 8, 2025
1 parent 33d3426 commit 9de906a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
run: |
php --version
echo "autoload is: $AUTOLOAD"
AUTOLOAD=1 just ci-test
just ci-test
publish:
# Doesn't actually publish. The publish happens via a packagist webhook configured in the Github UI. But we still display a message here
Expand Down
75 changes: 44 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,46 @@
{
"name": "stripe\/stripe-php",
"description": "Stripe PHP Library",
"keywords": [
"stripe",
"payment processing",
"api"
],
"homepage": "https:\/\/stripe.com\/",
"license": "MIT",
"authors": [
{
"name": "Stripe and contributors",
"homepage": "https:\/\/github.com\/stripe\/stripe-php\/contributors"
}
],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit\/phpunit": "^5.7 || ^9.0",
"friendsofphp\/php-cs-fixer": "3.5.0",
"phpstan\/phpstan": "^1.2"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
"name": "stripe/stripe-php",
"description": "Stripe PHP Library",
"keywords": [
"stripe",
"payment processing",
"api"
],
"homepage": "https://stripe.com/",
"license": "MIT",
"authors": [
{
"name": "Stripe and contributors",
"homepage": "https://github.com/stripe/stripe-php/contributors"
}
}
],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.0",
"friendsofphp/php-cs-fixer": "3.5.0",
"phpstan/phpstan": "^1.2"
},
"autoload": {
"psr-4": {
"Stripe\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Stripe\\": [
"tests/",
"tests/Stripe/"
]
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}

0 comments on commit 9de906a

Please sign in to comment.