1
0
mirror of https://github.com/flarum/core.git synced 2025-08-29 02:50:57 +02:00

Move to flarum

This commit is contained in:
SychO9
2021-10-21 10:52:51 +01:00
parent 7e174dd08a
commit a144c026f3
53 changed files with 363 additions and 171 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "sycho/flarum-package-manager",
"name": "flarum/package-manager",
"description": "A Flarum Package Manager.",
"keywords": [
"extensions", "composer", "packages", "manager", "updater"
@@ -8,19 +8,22 @@
"license": "MIT",
"authors": [
{
"name": "Sami Mazouz",
"email": "sami.mazouz@flarum.org",
"homepage": "https://sycho9.github.io"
"name": "Flarum",
"email": "info@flarum.org",
"homepage": "https://flarum.org/team"
}
],
"support": {
"issues": "https://github.com/SychO9/flarum-package-manager/issues",
"source": "https://github.com/SychO9/flarum-package-manager"
"issues": "https://github.com/flarum/package-manager/issues",
"source": "https://github.com/flarum/package-manager"
},
"require": {
"flarum/core": "^1.0.0",
"composer/composer": "^2.0"
},
"require-dev": {
"flarum/testing": "^1.0.0"
},
"extra": {
"flarum-extension": {
"title": "Package Manager",
@@ -33,7 +36,30 @@
},
"autoload": {
"psr-4": {
"SychO\\PackageManager\\": "src/"
"Flarum\\PackageManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flarum\\PackageManager\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "phpunit -c tests/phpunit.unit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"test:setup": [
"@php tests/integration/setup.php",
"cd $FLARUM_TEST_TMP_DIR_LOCAL && composer install"
]
},
"scripts-descriptions": {
"test": "Runs all tests.",
"test:unit": "Runs all unit tests.",
"test:integration": "Runs all integration tests.",
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
}
}