Skip to content

Commit

Permalink
Merge pull request #28 from wandersonwhcr/feature/updated
Browse files Browse the repository at this point in the history
Updated
  • Loading branch information
wandersonwhcr committed Mar 5, 2022
2 parents e1170d5 + 938bd8f commit 3869a46
Show file tree
Hide file tree
Showing 6 changed files with 660 additions and 467 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 https://github.com/wandersonwhcr/illuminate-romans
Copyright (c) 2022 https://github.com/wandersonwhcr/illuminate-romans

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ stable version.

```json
{
"require": {
"wandersonwhcr/illuminate-romans": "^2.0"
}
"require": {
"wandersonwhcr/illuminate-romans": "^2.0"
}
}
```

## Usage

This package provides facades and helpers to use with Laravel projects. Also,
this package is provided as a Laravel Package to automatically configure
services inside application.
This package provides facades and helpers to use with Laravel projects. Also, it
was developed as a Laravel Package to automatically configure services inside
application.

### Facades

Expand Down Expand Up @@ -66,11 +66,11 @@ test this package.

```bash
docker-compose build
docker-compose run romans composer install
docker-compose run romans composer test
docker-compose run --rm romans composer install
docker-compose run --rm romans composer test
```

## License

This package is opensource and available under license MIT described in
This package is opensource and available under MIT license described in
[LICENSE](https://github.com/wandersonwhcr/laravel-romans/blob/main/LICENSE).
111 changes: 60 additions & 51 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,64 @@
{
"name": "wandersonwhcr/illuminate-romans",
"description": "Laravel Illuminate Romans Integration",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "illuminate", "roman", "roman-number", "roman-numeral", "converter", "format", "validator"],
"require": {
"php": ">=7.4",
"wandersonwhcr/romans": "^1.3",
"illuminate/support": "^8.35"
"name": "wandersonwhcr/illuminate-romans",
"description": "Laravel Illuminate Romans Integration",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"illuminate",
"roman",
"roman-number",
"roman-numeral",
"converter",
"format",
"validator"
],
"require": {
"php": ">=7.4",
"wandersonwhcr/romans": "^1.3",
"illuminate/support": "^8.35"
},
"require-dev": {
"doctrine/instantiator": "^1.4",
"illuminate/container": "^8.35",
"illuminate/contracts": "^8.35",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "9.5.*",
"sebastian/phpcpd": "6.0.*",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Illuminate\\Romans\\": "src/"
},
"require-dev": {
"doctrine/instantiator": "^1.4",
"illuminate/container": "^8.35",
"illuminate/contracts": "^8.35",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "9.5.*",
"sebastian/phpcpd": "6.0.*",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Illuminate\\Romans\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"IlluminateTest\\Romans\\": "test/"
}
},
"scripts": {
"test": [
"parallel-lint src",
"phpunit",
"phpcpd src",
"phpmd src text phpmd.xml",
"phpcs"
]
},
"extra": {
"laravel": {
"providers": [
"Illuminate\\Romans\\Providers\\RomansProvider"
],
"aliases": {
"IntToRoman": "Illuminate\\Romans\\Support\\Facades\\IntToRoman",
"RomanToInt": "Illuminate\\Romans\\Support\\Facades\\RomanToInt"
}
}
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"IlluminateTest\\Romans\\": "test/"
}
},
"scripts": {
"test": [
"parallel-lint src",
"phpunit",
"phpcpd src",
"phpmd src text phpmd.xml",
"phpcs"
]
},
"extra": {
"laravel": {
"providers": [
"Illuminate\\Romans\\Providers\\RomansProvider"
],
"aliases": {
"IntToRoman": "Illuminate\\Romans\\Support\\Facades\\IntToRoman",
"RomanToInt": "Illuminate\\Romans\\Support\\Facades\\RomanToInt"
}
}
}
}
Loading

0 comments on commit 3869a46

Please sign in to comment.