Skip to content
This repository was archived by the owner on Mar 6, 2022. It is now read-only.

Commit e44162a

Browse files
authored
Maestro updates configuration (#5)
1 parent 7f3ced2 commit e44162a

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ jobs:
9292
-
9393
name: "Checkout code"
9494
uses: "actions/checkout@v2"
95-
9695
-
9796
name: "Install PHP"
9897
uses: "shivammathur/setup-php@v2"
@@ -107,7 +106,6 @@ jobs:
107106
uses: "ramsey/composer-install@v1"
108107
with:
109108
composer-options: "--no-scripts"
110-
111109
-
112110
name: "Run PHPUnit"
113111
run: "vendor/bin/phpunit"

composer.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "phpactor/completion-extension",
3+
"type": "phpactor-extension",
34
"description": "Phpactor Code Completion Extension",
4-
"minimum-stability": "dev",
55
"license": "MIT",
6-
"type": "phpactor-extension",
76
"authors": [
87
{
98
"name": "Daniel Leech",
@@ -12,14 +11,21 @@
1211
],
1312
"require": {
1413
"php": "^7.3",
15-
"phpactor/container": "^1.3.3",
1614
"phpactor/completion": "^0.4.2",
15+
"phpactor/container": "^1.3.3",
1716
"phpactor/logging-extension": "~0.1"
1817
},
1918
"require-dev": {
19+
"ergebnis/composer-normalize": "^2.0",
20+
"friendsofphp/php-cs-fixer": "^2.17",
2021
"phpstan/phpstan": "~0.12.0",
21-
"phpunit/phpunit": "~7.0",
22-
"friendsofphp/php-cs-fixer": "~2.15.0"
22+
"phpunit/phpunit": "~7.0"
23+
},
24+
"extra": {
25+
"branch-alias": {
26+
"dev-master": "0.2.x-dev"
27+
},
28+
"phpactor.extension_class": "Phpactor\\Extension\\Completion\\CompletionExtension"
2329
},
2430
"autoload": {
2531
"psr-4": {
@@ -31,17 +37,13 @@
3137
"Phpactor\\Extension\\Completion\\Tests\\": "tests/"
3238
}
3339
},
34-
"extra": {
35-
"phpactor.extension_class": "Phpactor\\Extension\\Completion\\CompletionExtension",
36-
"branch-alias": {
37-
"dev-master": "0.2.x-dev"
38-
}
39-
},
40+
"minimum-stability": "dev",
41+
"prefer-stable": true,
4042
"scripts": {
4143
"integrate": [
4244
"vendor/bin/php-cs-fixer fix",
4345
"vendor/bin/phpstan analyse lib -c phpstan.neon",
4446
"vendor/bin/phpunit"
4547
]
4648
}
47-
}
49+
}

0 commit comments

Comments
 (0)