-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The helper file is no longer autoloaded
- Loading branch information
Showing
7 changed files
with
98 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,53 @@ | ||
{ | ||
"name": "icanboogie/inflector", | ||
"type": "library", | ||
"description": "Multilingual inflector that transforms words from singular to plural, underscore to camel case, and more.", | ||
"keywords": [ "inflect", "pluralize", "singularize", "camelize", "underscore", "hyphenate", "multilingual" ], | ||
"homepage": "http://icanboogie.org/", | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Olivier Laviale", | ||
"email": "olivier.laviale@gmail.com", | ||
"homepage": "http://www.weirdog.com/", | ||
"role" : "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/ICanBoogie/Inflector/issues", | ||
"source": "https://github.com/ICanBoogie/Inflector" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"require": { | ||
"php": ">=7.1", | ||
"ext-mbstring": "*" | ||
}, | ||
"require-dev": { | ||
"icanboogie/common": "^2.1", | ||
"phpstan/phpstan": "^0.12.100|^2.0", | ||
"phpunit/phpunit": "^7.5.20|^11.4" | ||
}, | ||
"conflict": { | ||
"icanboogie/common": "<2.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ICanBoogie\\": "lib/" | ||
}, | ||
"files": [ "lib/helpers.php" ] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\ICanBoogie\\": "tests" | ||
} | ||
"name": "icanboogie/inflector", | ||
"type": "library", | ||
"description": "Multilingual inflector that transforms words from singular to plural, underscore to camel case, and more.", | ||
"keywords": [ | ||
"inflect", | ||
"pluralize", | ||
"singularize", | ||
"camelize", | ||
"underscore", | ||
"hyphenate", | ||
"multilingual" | ||
], | ||
"homepage": "https://icanboogie.org/", | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Olivier Laviale", | ||
"email": "olivier.laviale@gmail.com", | ||
"homepage": "https://olvlvl.com/", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/ICanBoogie/Inflector/issues", | ||
"source": "https://github.com/ICanBoogie/Inflector" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"require": { | ||
"php": ">=7.1", | ||
"ext-mbstring": "*" | ||
}, | ||
"require-dev": { | ||
"icanboogie/common": "^2.1", | ||
"phpstan/phpstan": "^1.4|^2.0", | ||
"phpunit/phpunit": "^7.5.20|^11.4" | ||
}, | ||
"conflict": { | ||
"icanboogie/common": "<2.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ICanBoogie\\": "lib/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\ICanBoogie\\": "tests" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the ICanBoogie package. | ||
* | ||
* (c) Olivier Laviale <olivier.laviale@gmail.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
require __DIR__ . '/../vendor/autoload.php'; | ||
|
||
mb_internal_encoding('UTF-8'); | ||
require __DIR__ . '/../lib/helpers.php'; |