Skip to content

Commit 5a93ac5

Browse files
committed
rename
1 parent b418e64 commit 5a93ac5

File tree

5 files changed

+10
-16
lines changed

5 files changed

+10
-16
lines changed

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
->ignoreVCS(true);
1212

1313
return (new PhpCsFixer\Config())
14-
->setRules(Descom\Common\CsFixer::rules())
14+
->setRules(Descom\Dev\CsFixer::rules())
1515
->setFinder($finder);

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Via Composer
66

77
```bash
8-
composer require descom/common
8+
composer require --dev descom/dev
99
```
1010

1111
## Usage
@@ -22,12 +22,6 @@ $finder = Symfony\Component\Finder\Finder::create()
2222
->ignoreVCS(true);
2323

2424
return (new PhpCsFixer\Config())
25-
->setRules(Descom\Common\CsFixer::rules())
25+
->setRules(Descom\Dev\CsFixer::rules())
2626
->setFinder($finder);
2727
```
28-
29-
## Testing
30-
31-
``` bash
32-
composer test
33-
```

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "descom/common",
3-
"description": "Package to PHP projects in Descom.es",
2+
"name": "descom/dev",
3+
"description": "Package to PHP Developer projects in Descom.es",
44
"type": "library",
55
"require": {
66
"php": "^8.0"
77
},
8-
"homepage": "https://github.com/descom-es/php-common",
8+
"homepage": "https://github.com/descom-es/php-dev",
99
"license": "MIT",
1010
"authors": [
1111
{
@@ -27,7 +27,7 @@
2727
},
2828
"autoload": {
2929
"psr-4": {
30-
"Descom\\Common\\": "src"
30+
"Descom\\Dev\\": "src"
3131
}
3232
},
3333
"scripts": {

src/CsFixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Descom\Common;
3+
namespace Descom\Dev;
44

55
class CsFixer
66
{

tests/CsFixerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Descom\Skeleton\Test;
3+
namespace Descom\Dev\Test;
44

5-
use Descom\Common\CsFixer;
5+
use Descom\Dev\CsFixer;
66
use PHPUnit\Framework\TestCase;
77

88
class CsFixerTest extends TestCase

0 commit comments

Comments
 (0)